diff options
Diffstat (limited to 'source/game/StarProjectile.cpp')
-rw-r--r-- | source/game/StarProjectile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarProjectile.cpp b/source/game/StarProjectile.cpp index 116fd08..cfb93ba 100644 --- a/source/game/StarProjectile.cpp +++ b/source/game/StarProjectile.cpp @@ -572,7 +572,7 @@ void Projectile::processAction(Json const& action) { if (stepsDelay == 0) function(world()); else - world()->timer(stepsDelay, function); + world()->timer((float)stepsDelay / 60.f, function); }; if (command == "tile") { |