diff -r 8842fa26698b -r cd86f95b46c9 share/hedgewars/Data/Scripts/Multiplayer/The_Specialists.lua --- a/share/hedgewars/Data/Scripts/Multiplayer/The_Specialists.lua Mon May 28 14:01:23 2012 -0400 +++ b/share/hedgewars/Data/Scripts/Multiplayer/The_Specialists.lua Mon May 28 14:11:50 2012 -0400 @@ -217,17 +217,17 @@ switchStage = 0 end -function onGameTick() +function onGameTick20() if (CurrentHedgehog ~= nil) then currName = GetHogName(CurrentHedgehog) - if (currName ~= lastName) and (switchStage > 100) then + if (currName ~= lastName) and (switchStage > 5) then AddCaption(loc("Switched to ") .. currName .. "!") end - if (TurnTimeLeft > 0) and (TurnTimeLeft ~= TurnTime) and (switchStage < 100) then + if (TurnTimeLeft > 0) and (TurnTimeLeft ~= TurnTime) and (switchStage < 5) then AddCaption(loc("Prepare yourself") .. ", " .. currName .. "!") @@ -246,12 +246,12 @@ elseif switchStage == 3 then SetGearMessage(CurrentHedgehog,gmAttack) elseif switchStage == 4 then - switchStage = 110 + switchStage = 6 AddAmmo(CurrentHedgehog, amSwitch, 0) end else - switchStage = 110 + switchStage = 6 end