diff -r 7c6f9b6672dc -r 11c578d30bd3 hedgewars/uVisualGears.pas --- a/hedgewars/uVisualGears.pas Sun Nov 27 19:34:08 2011 +0300 +++ b/hedgewars/uVisualGears.pas Sun Nov 27 23:13:22 2011 +0300 @@ -120,11 +120,11 @@ begin AddVisualGear:= nil; if ((GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet))) and // we are scrolling now - ((Kind <> vgtCloud) and not Critical) then exit; + ((Kind <> vgtCloud) and (not Critical)) then exit; if ((cReducedQuality and rqAntiBoom) <> 0) and - not Critical and - not (Kind in + (not Critical) and + (not (Kind in [vgtTeamHealthSorter, vgtSmallDamageTag, vgtSpeechBubble, @@ -133,7 +133,7 @@ vgtSmokeTrace, vgtEvilTrace, vgtNote, - vgtSmoothWindBar]) then exit; + vgtSmoothWindBar])) then exit; inc(VGCounter); New(gear);