adding new stuff

This commit is contained in:
Naman
2018-03-26 16:43:15 -05:00
parent 382f4c4b0c
commit 44b3de91dd
84 changed files with 1830 additions and 481 deletions

View File

@@ -237,6 +237,10 @@ public interface FPlayer extends EconomyParticipator {
public boolean attemptClaim(Faction forFaction, FLocation location, boolean notifyFailure);
public void setInVault(boolean status);
public boolean isInVault();
public void msg(String str, Object... args);
public String getId();
@@ -275,6 +279,15 @@ public interface FPlayer extends EconomyParticipator {
public boolean canFlyAtLocation(FLocation location);
public boolean isEnteringPassword();
public void setEnteringPassword(boolean toggle, String warp);
public String getEnteringWarp();
public boolean checkIfNearbyEnemies();
// -------------------------------
// Warmups
// -------------------------------
@@ -289,4 +302,4 @@ public interface FPlayer extends EconomyParticipator {
public void clearWarmup();
}
}