Update mods/other/disallowed_names/init.lua

Co-authored-by: Apelta <54854228+TSafa-23@users.noreply.github.com>
This commit is contained in:
olliy 2021-01-30 21:21:58 +05:00 committed by GitHub
parent 9bc4491f2c
commit 5abb26cb28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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