The ; is important.

This commit is contained in:
GJ 2013-05-22 22:30:40 -04:00
parent 5e00636761
commit 2cd52db8c9

View File

@ -381,7 +381,7 @@ public final class PartyManager {
* @return true if the player can invite * @return true if the player can invite
*/ */
public static boolean canInvite(Player player, Party party) { public static boolean canInvite(Player player, Party party) {
return !(party.isLocked() && !party.getLeader().equalsIgnoreCase(player.getName())) return !(party.isLocked() && !party.getLeader().equalsIgnoreCase(player.getName()));
} }
/** /**