diff --git a/src/map/script_map.cpp b/src/map/script_map.cpp index de511d84ff..f38b166e9e 100644 --- a/src/map/script_map.cpp +++ b/src/map/script_map.cpp @@ -1081,6 +1081,8 @@ static int CclPresentMap(lua_State *l) const std::string_view highgrounds = LuaToString(l, 6); if (highgrounds == "highgrounds-enabled") { Map.Info.EnableHighgrounds(); + } else { + LuaError(l, "Unknown value %s\n", highgrounds.data()); } }