6 lines
266 B
Lua
6 lines
266 B
Lua
|
minetest.register_on_prejoinplayer(function(name, ip)
|
||
|
if string.match(name, "[A-Z]%D+%d%d%d") ~= nil then
|
||
|
return "The format of your username is disallowed - please rejoin with a different username if your client supports it."
|
||
|
end
|
||
|
end)
|