tweak (still a hack)
authornemo
Mon, 10 Oct 2011 14:37:19 -0400
changeset 6118 7684ca4f9808
parent 6117 2a4829172a29
child 6119 91792f506371
tweak (still a hack)
hedgewars/HHHandlers.inc
--- a/hedgewars/HHHandlers.inc	Mon Oct 10 14:13:35 2011 -0400
+++ b/hedgewars/HHHandlers.inc	Mon Oct 10 14:37:19 2011 -0400
@@ -1116,12 +1116,12 @@
             doStepHedgehogDriven(Gear)
     end;
 
-if ((GameTicks mod 100) = 0) and (Gear^.State and (gstMoving or gstHHJumping or gstHHHJump) = 0) and ((Gear^.Message and gmAllStoppable) = 0) and 
+if ((GameTicks mod 50) = 0) and (Gear^.State and (gstMoving or gstHHJumping or gstHHHJump) = 0) and ((Gear^.Message and gmAllStoppable) = 0) and 
     (TestCollisionYwithGear(Gear, 1) and lfIce <> 0) then
     begin
     if CheckLandValue(hwRound(Gear^.X), hwRound(Gear^.Y)+cHHRadius, lfIce) then
         begin
-        Gear^.dX.QWordValue:= Gear^.dX.QWordValue + cGravity.QWordValue * 150;
+        Gear^.dX.QWordValue:= Gear^.dX.QWordValue + cGravity.QWordValue * 75;
         Gear^.State:= Gear^.State or gstMoving;
         end
 (*