Fixed some merge issues.

This commit is contained in:
CannibalVox
2013-12-06 21:14:20 -06:00
parent 2388be2681
commit 7dc51a8e56
3 changed files with 9 additions and 34 deletions

View File

@@ -72,4 +72,12 @@ public abstract class DDCommandBase extends CommandBase
sendChat(player,(result.getMessage()));
}
}
public static void sendChat(EntityPlayer player, String message)
{
ChatMessageComponent cmp = new ChatMessageComponent();
cmp.addText(message);
player.sendChatToPlayer(cmp);
}
}