state: Added simple mode for isPhaseOver()

This commit is contained in:
2023-04-26 11:49:06 +10:00
parent 10b23e8a8c
commit e228e9551a
2 changed files with 18 additions and 1 deletions

View File

@@ -538,7 +538,7 @@ public class BlueLagoon {
*/
public static boolean isPhaseOver(String stateString){
State state = new State(stateString);
return state.isPhaseOver();
return state.isPhaseOver(true);
}
/**