Fixed /f where bug

This commit is contained in:
shamoanjac 2016-08-10 02:01:50 +02:00
parent e5baf22d52
commit 0dc86e2076
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ factions.register_command("where", {
infaction = false,
on_success = function(player, faction, pos, chunkpos, args)
local chunk = factions.chunks[chunkpos]
minetest.chat_send_player(player, "You are standing on chunk "..chunkpos..", part of "..chunk or "Wilderness"..",")
minetest.chat_send_player(player, "You are standing on chunk "..chunkpos..", part of "..(chunk or "Wilderness"))
return true
end
})