From 932b471f361b8f1b592851ab130c2b02522a8511 Mon Sep 17 00:00:00 2001 From: olliy <55839810+olliy1or@users.noreply.github.com> Date: Sun, 31 Jan 2021 13:20:50 +0500 Subject: [PATCH] Update mods/other/disallowed_names/init.lua Co-authored-by: David Leal --- 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 2f80f15..208a9af 100644 --- a/mods/other/disallowed_names/init.lua +++ b/mods/other/disallowed_names/init.lua @@ -18,7 +18,7 @@ minetest.register_chatcommand("bdname_add", { func = function(name,param) if param ~= "" then table.insert(disallowed_names,tostring(param)) - minetest.chat_send_player(name, "added "..param.." to the list of banned words") + minetest.chat_send_player(name, "Added " .. param .. " to the list of banned words") local serial_table = minetest.serialize(disallowed_names) storage:set_string("disallowed_names", serial_table) else