Windmill: Syntax error fix

install-platforms
Julius Michaelis 2017-08-26 12:16:04 +02:00
parent a630d2b94b
commit 9c3c6d1079
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ private func ExecuteRanged(effect fx)
if (fx.post_aim_weapon)
{
// wait max one second after shot (otherwise may be locked in wait animation forever if something goes wrong during shot)
if (FrameCounter() - fx.post_aim_weapon_time <= (fx.post_aim_weapon->~GetShootTime() ? ? 35))
if (FrameCounter() - fx.post_aim_weapon_time <= (fx.post_aim_weapon->~GetShootTime() ?? 35))
if (this->IsAimingOrLoading(fx)) return true;
fx.post_aim_weapon = nil;
}