From cfc2ab3f0c94234a98be573af394b23868166f84 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Sat, 7 Mar 2020 22:26:28 +0100 Subject: Got secret door bonus --- src/ft_check_map_surrounds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ft_check_map_surrounds.c') diff --git a/src/ft_check_map_surrounds.c b/src/ft_check_map_surrounds.c index 2bf228c..07c9540 100644 --- a/src/ft_check_map_surrounds.c +++ b/src/ft_check_map_surrounds.c @@ -42,7 +42,7 @@ void { while (ml->map[y][x]) { - if (ft_ischarset("02NESWL", ml->map[y][x])) + if (ft_ischarset("02NESWLD", ml->map[y][x])) { if (ft_wall_check(y, x, ml->map) < 0) ft_map_error(FT_ERR_MAP_WALLS, cl); -- cgit v1.2.3