Update init.lua

This commit is contained in:
Alvarion 2015-09-23 14:32:28 +02:00
parent 1134a5ee92
commit ba56509c39

View File

@ -51,6 +51,9 @@ end)
------------------------
minetest.register_on_prejoinplayer(function(name, ip)
if exemptions[name] then return end
-- Check for used names
local lname = name:lower()
for iname, data in pairs(minetest.auth_table) do
if iname:lower() == lname and iname ~= name then