Alert lone players trying to speak in party chat

This commit is contained in:
bm01
2012-03-10 02:37:22 +01:00
parent f5a559efa6
commit d391d12ab5
2 changed files with 11 additions and 0 deletions

View File

@ -61,6 +61,11 @@ public class PCommand implements CommandExecutor {
// Not a toggle, a message
if (args.length >= 1) {
if(!PP.inParty()) {
player.sendMessage("You're not in a party."); //TODO: Use mcLocale
return true;
}
String pMessage = args[0];
for (int i = 1; i <= args.length - 1; i++) {
pMessage = pMessage + " " + args[i];