From 5abb26cb28b2899a57ba8e4b949ad4445952eb36 Mon Sep 17 00:00:00 2001 From: olliy <55839810+olliy1or@users.noreply.github.com> Date: Sat, 30 Jan 2021 21:21:58 +0500 Subject: [PATCH] Update mods/other/disallowed_names/init.lua Co-authored-by: Apelta <54854228+TSafa-23@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 993ee01..c951db7 100644 --- a/mods/other/disallowed_names/init.lua +++ b/mods/other/disallowed_names/init.lua @@ -49,7 +49,7 @@ minetest.register_chatcommand("bdname_list", { description = "lists all the disallowed", privs = {ban= true}, func= function(name) - for k,v in pairs(disallowed_names) do + for k in pairs(disallowed_names) do minetest.chat_send_player(name, disallowed_names[k]) end end