home · contact · privacy
Server: Fix buggy list of directions in try_thing_proliferation().
authorChristian Heller <c.heller@plomlompom.de>
Wed, 4 Feb 2015 04:35:44 +0000 (05:35 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 4 Feb 2015 04:35:44 +0000 (05:35 +0100)
src/server/things.c

index 85503e9a8a874d556ae38a669945e5e819b36870..f114ea4abbb85933acde8a96df287d55808c8419 100644 (file)
@@ -309,7 +309,7 @@ extern void try_thing_proliferation(struct Thing * t)
         {
             struct yx_uint8 candidates[6];
             uint8_t n_candidates = 0;
-            char dirs[7] = "dxswed";
+            char dirs[7] = "cxswed";
             struct yx_uint8 test = t->pos;
             uint8_t i;
             for (i = 0; i < strlen(dirs); i++)