diff -r 23e16f33b528 -r b0fe8c8d0bb5 hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Tue Apr 13 15:40:11 2021 -0400 +++ b/hedgewars/uWorld.pas Mon Aug 10 12:56:53 2020 +0300 @@ -1129,8 +1129,8 @@ procedure ShiftWorld(Dir: LongInt); inline; begin preShiftWorldDx:= WorldDx; - WorldDx:= WorldDx + LongInt(Dir * LongInt(playWidth)); - + Dir := Dir * LongInt(playWidth); + WorldDx:= WorldDx + Dir; end; procedure UnshiftWorld(); inline;