# HG changeset patch
# User nemo
# Date 1318271839 14400
# Node ID 7684ca4f98087755d01faf47d07af01f5e5430d8
# Parent  2a4829172a29fc699af1dc6d3415729ac882a679
tweak (still a hack)

diff -r 2a4829172a29 -r 7684ca4f9808 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
 (*