Fix a crash and use nil instead of a string in certain places

This commit is contained in:
a-bad-dev 2026-02-19 18:39:24 -04:00
commit 2061af0645
3 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ function place_map(map)
if map_list[i] == map then
break
elseif i == #map_list then
return "nope :("
return nil
end
end