CraftBukkit comment fixes

This commit is contained in:
Wesley Wolfe
2012-09-14 00:03:47 -05:00
committed by EvilSeph
parent 4b1f6aff3f
commit cebc8cffec
10 changed files with 16 additions and 20 deletions

View File

@@ -847,7 +847,7 @@ public class NetServerHandler extends NetHandler {
((EntityPlayer) recipient).sendMessage(s);
}
} else {
for (org.bukkit.entity.Player recipient : event.getRecipients()) {
for (Player recipient : event.getRecipients()) {
recipient.sendMessage(s);
}
}