Fixed Bug with Points
This commit is contained in:
parent
664d27a57c
commit
92d46f91f4
@ -415,7 +415,7 @@ public class Conf {
|
||||
safeZoneNerfedCreatureTypes.add(EntityType.WITCH);
|
||||
safeZoneNerfedCreatureTypes.add(EntityType.WITHER);
|
||||
safeZoneNerfedCreatureTypes.add(EntityType.ZOMBIE);
|
||||
|
||||
|
||||
// Is this called lazy load?
|
||||
defaultFactionPermissions.put("LEADER", new DefaultPermissions(true));
|
||||
defaultFactionPermissions.put("COLEADER", new DefaultPermissions(true));
|
||||
|
@ -37,9 +37,11 @@ public class CmdPointsAdd extends FCommand {
|
||||
public void perform() {
|
||||
Faction faction = Factions.getInstance().getByTag(args.get(0));
|
||||
|
||||
FPlayer fPlayer = this.argAsFPlayer(0);
|
||||
if (fPlayer != null) {
|
||||
faction = fPlayer.getFaction();
|
||||
if (faction == null) {
|
||||
FPlayer fPlayer = this.argAsFPlayer(0);
|
||||
if (fPlayer != null) {
|
||||
faction = fPlayer.getFaction();
|
||||
}
|
||||
}
|
||||
|
||||
if (faction == null || faction.isWilderness()) {
|
||||
|
Loading…
Reference in New Issue
Block a user