diff options
author | shfil <filip.gawin@zoho.com> | 2020-10-18 00:54:27 +0200 |
---|---|---|
committer | shfil <filip.gawin@zoho.com> | 2020-10-18 00:56:07 +0200 |
commit | 82f54b946fa37f9c92be2a2f2883f8f37655f3ed (patch) | |
tree | 3d8383d68afe0927526982dc48a6f200005255d6 /src | |
parent | ProcessWaterCannon bug and refractoring (#773) (diff) | |
download | re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.tar re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.tar.gz re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.tar.bz2 re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.tar.lz re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.tar.xz re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.tar.zst re3-82f54b946fa37f9c92be2a2f2883f8f37655f3ed.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Script.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp index 650e11a7..5dceacb7 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -2002,9 +2002,11 @@ void CTheScripts::Process() case 4: AllowMissionReplay = 5; RetryMission(0, 0); + break; case 6: AllowMissionReplay = 7; TimeToWaitTill = CTimer::GetTimeInMilliseconds() + 500; + break; case 7: if (TimeToWaitTill < CTimer::GetTimeInMilliseconds()) { AllowMissionReplay = 0; |