From af24759809d4f359977264409dbd5534d863df8d Mon Sep 17 00:00:00 2001 From: Josh Wilson Date: Wed, 25 Oct 2006 21:05:54 +0000 Subject: [PATCH] stop ship controls from sending out avatar type jump messages --- direct/src/controls/ShipPilot2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/direct/src/controls/ShipPilot2.py b/direct/src/controls/ShipPilot2.py index 374e29dc90..bb48628daa 100755 --- a/direct/src/controls/ShipPilot2.py +++ b/direct/src/controls/ShipPilot2.py @@ -692,14 +692,14 @@ class ShipPilot2(PhysicsWalker): # the avatar has landed. contactLength = contact.length() if contactLength>self.__hardLandingForce: - messenger.send("jumpHardLand") + messenger.send("shipJumpHardLand") else: - messenger.send("jumpLand") + messenger.send("shipJumpLand") #self.priorParent.setVector(Vec3.zero()) self.isAirborne = 0 elif jump: #self.__jumpButton=0 - messenger.send("jumpStart") + messenger.send("shipJumpStart") if 0: # Jump away from walls and with with the slope normal. jumpVec=Vec3(contact+Vec3.up())