1
0
mirror of https://github.com/ShadowNinja/name_restrictions.git synced 2025-05-04 17:30:20 +02:00

Add a comment on similar name restriction

This commit is contained in:
ShadowNinja 2014-10-14 14:38:15 -04:00
parent edecfee654
commit f44f45d36e

@ -120,6 +120,7 @@ all_chars = all_chars .. "]"
minetest.register_on_prejoinplayer(function(name, ip) minetest.register_on_prejoinplayer(function(name, ip)
if exemptions[name] then return end if exemptions[name] then return end
-- Generate a regular expression to match all similar names
local re = name:gsub(all_chars, char_map) local re = name:gsub(all_chars, char_map)
re = "^[_-]*" .. re .. "[_-]*$" re = "^[_-]*" .. re .. "[_-]*$"