Merge pull request #189 from mbax/1.6.x.damnitguys

Fix for further async command issue which was missed in earlier sweep
This commit is contained in:
Brett Flannigan 2012-11-26 01:16:37 -08:00
commit 066ec5cadb
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public class FactionsChatListener implements Listener
ChatMode chat = me.getChatMode();
// slashless factions commands need to be handled here if the user isn't in public chat mode
if (chat != ChatMode.PUBLIC && p.handleCommand(talkingPlayer, msg))
if (chat != ChatMode.PUBLIC && p.handleCommand(talkingPlayer, msg, false, true))
{
if (Conf.logPlayerCommands)
Bukkit.getLogger().log(Level.INFO, "[PLAYER_COMMAND] "+talkingPlayer.getName()+": "+msg);