implement import systems from eddb
This commit is contained in:
@@ -3,11 +3,11 @@ package ru.trader.core;
|
||||
public enum POWER_STATE {
|
||||
CONTROL, EXPLOITED, EXPANSION, NONE, CONTESTED, HEADQUARTERS, BLOCKED, TURMOIL;
|
||||
|
||||
boolean isControl(){
|
||||
public boolean isControl(){
|
||||
return this == CONTROL || this == HEADQUARTERS || this == TURMOIL;
|
||||
}
|
||||
|
||||
boolean isExploited(){
|
||||
public boolean isExploited(){
|
||||
return this == EXPLOITED || this == BLOCKED;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user