Add: long name to description cmd

This commit is contained in:
Coder12a
2020-01-03 16:57:27 -06:00
parent 3b1d02fd33
commit d8abcbb05b
2 changed files with 5 additions and 5 deletions

View File

@ -192,7 +192,7 @@ factions.register_command({"flag help", "flag flags"}, {
on_success = function(player, faction, pos, parcelpos, args)
local msg = ""
for i, k in pairs(factions.flags) do
msg = msg .. i ..": ".. k .. "\n"
msg = msg .. i .. ": " .. k .. "\n"
end
minetest.chat_send_player(player, msg)
end