Fix missing party chat permission node check

This commit is contained in:
nossr50
2020-10-28 10:53:47 -07:00
parent 8aff138954
commit ca93dc02df
3 changed files with 5 additions and 2 deletions

View File

@ -159,7 +159,7 @@ public class ChatManager {
}
break;
case PARTY:
if(mmoPlayer.getParty() != null) {
if(mmoPlayer.getParty() != null && Permissions.partyChat(mmoPlayer.getPlayer())) {
return true;
}
break;