Merge pull request #10 from shamoanjac/master

Fixed /f where bug
This commit is contained in:
agrecascino 2016-08-09 20:07:46 -04:00 committed by GitHub
commit 746573abec

View File

@ -447,7 +447,7 @@ factions.register_command("where", {
infaction = false, infaction = false,
on_success = function(player, faction, pos, chunkpos, args) on_success = function(player, faction, pos, chunkpos, args)
local chunk = factions.chunks[chunkpos] 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 return true
end end
}) })