This commit is contained in:
MihailRis 2025-01-06 19:32:39 +03:00
parent d65da966d2
commit 550f3c468f

View File

@ -1,6 +1,6 @@
settings = session.get_entry('new_world')
local function world_name_validator(name)
function world_name_validator(name)
return name:match("^[%w-\\.\\ ]+$") ~= nil and not world.exists(name)
end