From c35bd98e34a9751d38ddf2e59c47940ceff38252 Mon Sep 17 00:00:00 2001 From: olliy <55839810+olliy1or@users.noreply.github.com> Date: Sun, 31 Jan 2021 13:18:14 +0500 Subject: [PATCH] Update mods/other/disallowed_names/init.lua Co-authored-by: Avyukt More <65779812+moreavy@users.noreply.github.com> --- mods/other/disallowed_names/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/other/disallowed_names/init.lua b/mods/other/disallowed_names/init.lua index c951db7..28db9c2 100644 --- a/mods/other/disallowed_names/init.lua +++ b/mods/other/disallowed_names/init.lua @@ -5,7 +5,7 @@ disallowed_names=minetest.deserialize(storage:get_string("disallowed_names")) or minetest.register_on_prejoinplayer(function(name) for k,v in pairs(disallowed_names) do if string.find(string.lower(name),string.lower(v)) then - return "Your cannot use that username in this server, please change it and come back." + return "Your cannot use that username in this server. Please login with another username." end end end)