home · contact · privacy
Fix code line lengths.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 15 Oct 2014 01:33:23 +0000 (03:33 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 15 Oct 2014 01:33:23 +0000 (03:33 +0200)
src/server/map.c
src/server/things.h

index 833ff98cd1d380bdd97f5b74c9c66f219b5c5225..4cce02ae3c5cd08831f96f0d0bb49b5f0224959d 100644 (file)
@@ -204,7 +204,7 @@ extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx)
     }
     char * err = "Too much wrapping in mv_yx_in_dir_legal().";
     exit_err(   INT8_MIN == wrap_west_east || INT8_MIN == wrap_north_south
-             || INT8_MAX == wrap_west_east || INT8_MAX == wrap_north_south, err);
+             || INT8_MAX == wrap_west_east || INT8_MAX == wrap_north_south,err);
     struct yx_uint8 original = *yx;
     mv_yx_in_dir(dir, yx);
     if      (('e' == dir || 'd' == dir || 'c' == dir) && yx->x < original.x)
index 0f20fd90b8a14031b42fc4e3deb3791cd079028e..03b52d83a911441147ffee6d206535091cc3a80f 100644 (file)
@@ -110,9 +110,9 @@ extern struct Thing * get_thing(struct Thing * ptr, uint8_t id, uint8_t deep);
  */
 extern struct Thing * get_player();
 
-/* Try to create "t" offspring on random passable neighbor cell if available (and,
- * if "t" is of animate thing type, not inhabited by animate thing) and "t"'s
- * type's .proliferation is >0, with a chance of 1/.proliferation.
+/* Try to create "t" offspring on random passable neighbor cell if available
+ * (and, if "t" is of animate thing type, not inhabited by animate thing) and
+ * "t"'s type's .proliferation is >0, with a chance of 1/.proliferation.
  */
 extern void try_thing_proliferation(struct Thing * t);