Skip to content

Commit

Permalink
Fix timer not being reduced with skips in RMS Chaos
Browse files Browse the repository at this point in the history
  • Loading branch information
GreepTheSheep committed Apr 25, 2022
1 parent a549a9d commit 66c28da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/RMC/GlobalProperties.as
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ namespace RMC
if (DataJson["recentlyPlayed"].Length > 0 && currentMapInfo.MapUid == DataJson["recentlyPlayed"][0]["TrackUID"]) {
StartTime = Time::get_Now();

if (RMC::selectedGameMode == GameMode::Survival) {
if (RMC::selectedGameMode == GameMode::Survival || RMC::selectedGameMode == GameMode::SurvivalChaos) {
// Cap timer max
if ((EndTime - StartTime) > (PluginSettings::RMC_SurvivalMaxTime-Survival.Skips)*60*1000) {
EndTime = StartTime + (PluginSettings::RMC_SurvivalMaxTime-Survival.Skips)*60*1000;
Expand Down

0 comments on commit 66c28da

Please sign in to comment.