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_parse_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ft_parse_map.c') diff --git a/src/ft_parse_map.c b/src/ft_parse_map.c index 36d1ec5..38ce686 100644 --- a/src/ft_parse_map.c +++ b/src/ft_parse_map.c @@ -65,7 +65,7 @@ static int8_t } if (ft_ischarset("1 ", line[0])) return ((ft_get_map_first_line(line, clist) < 0) ? (-1) : (12)); - if (!ft_ischarset("RNSEWFCLM", line[0]) + if (!ft_ischarset("RNSEWFCLMD", line[0]) || !(words = ft_split(line, ' '))) return (ft_error_here(FT_ERR_ILL_ENTRY, line, clist)); if ((ret = ft_select_get(words, clist)) == 12) -- cgit v1.2.3