From 36d7f1c3f8396f9d58795d2cd8eff689b51b59d5 Mon Sep 17 00:00:00 2001
From: Allanis <allanis@saracraft.net>
Date: Fri, 7 Mar 2014 19:43:46 +0000
Subject: [PATCH] [Fix] Handle pirate jumping in tutorial

---
 dat/missions/tutorial.lua | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dat/missions/tutorial.lua b/dat/missions/tutorial.lua
index 3fc2925..6a597e1 100644
--- a/dat/missions/tutorial.lua
+++ b/dat/missions/tutorial.lua
@@ -248,6 +248,7 @@ function boardOver ()
    pilots = pilot.add( "Pirate Hyena" )
    for k,v in ipairs(pilots) do
        hook.pilot( v, "death", "hyenaDead" )
+       hook.pilot(v, "jump", "hyenaDead") -- Treat jump as dead.
    end
    misn.timerStart( "bringHelp", 9000 ) -- Player "should" surive 9 seconds
 end