diff -r 62cc7f67105f -r adb5ef54da54 hedgewars/uGearsHandlersMess.pas --- a/hedgewars/uGearsHandlersMess.pas Sun Aug 30 18:03:44 2015 +0300 +++ b/hedgewars/uGearsHandlersMess.pas Tue Sep 01 23:54:13 2015 +0200 @@ -2769,10 +2769,10 @@ if Gear^.AmmoType = amRubber then LandFlags:= lfBouncy else if cIce then LandFlags:= lfIce; - distFail:= ((Distance(tx - x, ty - y) > _256) and ((WorldEdge <> weWrap) or + distFail:= (cBuildMaxDist > 0) and ((hwRound(Distance(tx - x, ty - y)) > cBuildMaxDist) and ((WorldEdge <> weWrap) or ( - (Distance(tx - int2hwFloat(rightX+(rx-leftX)), ty - y) > _256) and - (Distance(tx - int2hwFloat(leftX-(rightX-rx)), ty - y) > _256) + (hwRound(Distance(tx - int2hwFloat(rightX+(rx-leftX)), ty - y)) > cBuildMaxDist) and + (hwRound(Distance(tx - int2hwFloat(leftX-(rightX-rx)), ty - y)) > cBuildMaxDist) ))); if distFail or (not TryPlaceOnLand(Gear^.Target.X - SpritesData[Ammoz[Gear^.AmmoType].PosSprite].Width div 2, Gear^.Target.Y - SpritesData[Ammoz[Gear^.AmmoType].PosSprite].Height div 2, Ammoz[Gear^.AmmoType].PosSprite, Gear^.State, true, LandFlags)) then