resetting correct noclip spawn rate

This commit is contained in:
Clément Le Bihan
2021-06-18 16:28:30 +02:00
parent cdba078231
commit afc1fda08e
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -87,11 +87,11 @@ namespace BBM
auto nbMilliSec = duration_cast<std::chrono::milliseconds>(bonus.nextNoClipRate).count();
if (nbMilliSec > 1000) {
if (nbMilliSec > 1500) {
ctx.step = ctx.initalStepValue;
} else if (nbMilliSec > 500) {
} else if (nbMilliSec > 1000) {
ctx.step = 0.15;
} else if (nbMilliSec > 100) {
} else if (nbMilliSec > 200) {
ctx.step = 0.30;
} else {
ctx.step = 0.5;