home · contact · privacy
Add to TODO.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 21 Aug 2014 11:54:13 +0000 (13:54 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 21 Aug 2014 11:54:13 +0000 (13:54 +0200)
TODO
src/server/yx_uint8.c

diff --git a/TODO b/TODO
index a5eb09432b8f8b604ace9f715fc6f9a1e9196343..c9645c9081c9eb310f903d0084737109441aad9a 100644 (file)
--- a/TODO
+++ b/TODO
@@ -4,6 +4,10 @@ IN GENERAL:
 
 - expand use of hardcoded_strings module(s)
 
+SERVER:
+
+- handle case of actors hitting the map edge
+
 BOTH SERVER/CLIENT:
 
 - make server and client communicate by specific world state info requests 
index 8d47c82e505d85ec275bfaf98b1bf3dfc2a4e760..626f9b4c6672044b6214bd8d2822c2a4bcd07bd6 100644 (file)
@@ -19,7 +19,7 @@ extern uint8_t yx_uint8_cmp(struct yx_uint8 * a, struct yx_uint8 * b)
 
 extern struct yx_uint8 mv_yx_in_dir(char d, struct yx_uint8 yx)
 {
-    if     (d == 'e' && yx.y > 0         && (yx.x < UINT8_MAX || !(yx.y % 2)))
+    if      (d == 'e' && yx.y > 0        && (yx.x < UINT8_MAX || !(yx.y % 2)))
     {
         yx.x = yx.x + (yx.y % 2);
         yx.y--;