# HG changeset patch # User nemo # Date 1267379324 0 # Node ID c7087a565bd2988301936b66dd8c4b831a24df99 # Parent 518e6e66239d5044a21eabb6c915f65054184d65 trying a little hiss and steam diff -r 518e6e66239d -r c7087a565bd2 hedgewars/GSHandlers.inc --- a/hedgewars/GSHandlers.inc Sun Feb 28 17:32:39 2010 +0000 +++ b/hedgewars/GSHandlers.inc Sun Feb 28 17:48:44 2010 +0000 @@ -1208,7 +1208,12 @@ doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); DeleteGear(Gear) end - else Gear^.Health:= 0; + else + begin + AddVisualGear(hwRound(Gear^.X) - 4 + Random(8), hwRound(Gear^.Y) - 4 - Random(4), vgtSteam); + PlaySound(sndVaporize); + Gear^.Health:= 0; + end; exit end; dec(Gear^.Timer);