X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fserver%2Fmap.c;h=ae907d2327363fef50919575440a27a6a094a702;hb=f6615d3be438bbca4997c38c546c0d8724da80d4;hp=50c7bf1560105c5e6b3f2af12971637492ae2ac5;hpb=6db8d212ad66a7a934a47f319f88d1c811791798;p=plomrogue diff --git a/src/server/map.c b/src/server/map.c index 50c7bf1..ae907d2 100644 --- a/src/server/map.c +++ b/src/server/map.c @@ -5,7 +5,7 @@ #include /* free() */ #include "../common/rexit.h" /* exit_err() */ #include "../common/try_malloc.h" /* try_malloc() */ -#include "../common/yx_uint8.h" /* struct yx_uint8 */ +#include "../common/yx_uint8.h" /* yx_uint8 */ #include "rrand.h" /* rrand() */ #include "yx_uint8.h" /* mv_yx_in_dir_wrap() */ #include "world.h" /* global world */ @@ -152,18 +152,6 @@ extern void remake_map() -extern uint8_t is_passable(struct yx_uint8 pos) -{ - uint8_t passable = 0; - if (pos.x < world.map.length && pos.y < world.map.length) - { - passable = ('.' == world.map.cells[(pos.y * world.map.length) + pos.x]); - } - return passable; -} - - - extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx) { uint8_t wraptest = mv_yx_in_dir_wrap(dir, yx, 0);