Moved all player messages to playerMsg()

Changes to /blockcmd
This commit is contained in:
Jerom van der Sar
2013-01-07 15:56:53 +01:00
parent f0ca909069
commit ac0dc43cd7
65 changed files with 271 additions and 208 deletions

View File

@ -67,11 +67,13 @@ public class TFM_Util
TFM_Util.bcastMsg(message, null);
}
@Deprecated
public static void playerMsg(CommandSender sender, String message, ChatColor color)
{
sender.sendMessage(color + message);
}
@Deprecated
public static void playerMsg(CommandSender sender, String message)
{
TFM_Util.playerMsg(sender, message, ChatColor.GRAY);