Faster fire falling
authorunc0rr
Mon, 23 Feb 2009 18:58:22 +0000
changeset 1830 b3e9ab82c364
parent 1829 0cd14c9b1fe0
child 1831 025348f05b9f
Faster fire falling
hedgewars/GSHandlers.inc
--- a/hedgewars/GSHandlers.inc	Mon Feb 23 18:56:48 2009 +0000
+++ b/hedgewars/GSHandlers.inc	Mon Feb 23 18:58:22 2009 +0000
@@ -1201,9 +1201,9 @@
 		Gear^.dX:= Gear^.dX * _0_995;
 
 	Gear^.dY:= Gear^.dY + cGravity;
-	if hwAbs(Gear^.dY) > _0_08 then Gear^.dY:= Gear^.dY * _0_995;
+	if hwAbs(Gear^.dY) > _0_2 then Gear^.dY:= Gear^.dY * _0_995;
 	
-	Gear^.X:= Gear^.X + Gear^.dX + cWindSpeed * 270;
+	Gear^.X:= Gear^.X + Gear^.dX + cWindSpeed * 640;
 	Gear^.Y:= Gear^.Y + Gear^.dY;
 	
 	if not (hwRound(Gear^.Y) < cWaterLine) then