home · contact · privacy
Server: Minor simplification of mv_yx_in_dir_legal().
authorChristian Heller <c.heller@plomlompom.de>
Sat, 6 Sep 2014 02:34:56 +0000 (04:34 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 6 Sep 2014 02:34:56 +0000 (04:34 +0200)
src/server/map.c

index 807083d708faf5dabff5d857d4270bc2d4c2b001..0007633711d7ba29a5a7a5a9297c62ff47efaafd 100644 (file)
@@ -220,7 +220,7 @@ extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx)
     {
         wrap_north_south++;
     }
-    if (   !((wrap_west_east != 0) + (wrap_north_south != 0))
+    if (   !wrap_west_east && !wrap_north_south
         && yx->x < world.map.length && yx->y < world.map.length)
     {
         return 1;