[Fix] Handle pirate jumping in tutorial

This commit is contained in:
Allanis 2014-03-07 19:43:46 +00:00
parent da98ff806d
commit 36d7f1c3f8

View File

@ -248,6 +248,7 @@ function boardOver ()
pilots = pilot.add( "Pirate Hyena" ) pilots = pilot.add( "Pirate Hyena" )
for k,v in ipairs(pilots) do for k,v in ipairs(pilots) do
hook.pilot( v, "death", "hyenaDead" ) hook.pilot( v, "death", "hyenaDead" )
hook.pilot(v, "jump", "hyenaDead") -- Treat jump as dead.
end end
misn.timerStart( "bringHelp", 9000 ) -- Player "should" surive 9 seconds misn.timerStart( "bringHelp", 9000 ) -- Player "should" surive 9 seconds
end end