# HG changeset patch
# User unc0rr
# Date 1273168864 0
# Node ID 858105ae769c9076ae8267bcd0a50aa6f91c54c2
# Parent  288fcbdb77b69a40243e3edd9eaf1110d2cb92bc
Explain a bug. Fix should be kinda trivial, but I have no time now to fix and test.

diff -r 288fcbdb77b6 -r 858105ae769c hedgewars/uGears.pas
--- a/hedgewars/uGears.pas	Thu May 06 17:53:37 2010 +0000
+++ b/hedgewars/uGears.pas	Thu May 06 18:01:04 2010 +0000
@@ -192,9 +192,9 @@
 procedure InsertGearToList(Gear: PGear);
 var tmp, ptmp: PGear;
 begin
-if GearsList = nil then
-    GearsList:= Gear
-    else begin
+// this thing is broken, and the bug explains why you sometimes see grenade stuck in hog not behind hedgehog sprite
+// when there's only one gear in list, the next one is inserted right after it disregarding its Z value
+// TODO: fix the bug
     tmp:= GearsList;
     ptmp:= GearsList;
     while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do
@@ -210,8 +210,8 @@
         if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear;
         ptmp^.NextGear:= Gear
         end
-    else GearsList:= Gear
-    end
+    else 
+        GearsList:= Gear
 end;
 
 procedure RemoveGearFromList(Gear: PGear);