Deprecate Factions#getNone in favor of Factions#getWilderness

This commit is contained in:
drtshock 2015-07-23 14:39:50 -05:00
parent 03cc7f7394
commit 786f2d655f
3 changed files with 9 additions and 1 deletions

View File

@ -26,8 +26,11 @@ public abstract class Factions {
public abstract ArrayList<Faction> getAllFactions();
@Deprecated
public abstract Faction getNone();
public abstract Faction getWilderness();
public abstract Faction getSafeZone();
public abstract Faction getWarZone();

View File

@ -37,7 +37,7 @@ public class CmdTop extends FCommand {
// Can sort by: money, members, online, allies, enemies, power, land.
// Get all Factions and remove non player ones.
ArrayList<Faction> factionList = Factions.getInstance().getAllFactions();
factionList.remove(Factions.getInstance().getNone());
factionList.remove(Factions.getInstance().getWilderness());
factionList.remove(Factions.getInstance().getSafeZone());
factionList.remove(Factions.getInstance().getWarZone());

View File

@ -157,6 +157,11 @@ public abstract class MemoryFactions extends Factions {
return factions.get("0");
}
@Override
public Faction getWilderness() {
return factions.get("0");
}
@Override
public Faction getSafeZone() {
return factions.get("-1");