mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
fix compile loadphasemanager
This commit is contained in:
parent
553d263526
commit
9a1edf7689
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ public class LoadPhaseManager {
|
|||
|
||||
private static Map<PhaseStep, Boolean> skipYou;
|
||||
static {
|
||||
skipYou = new HashMap<>() {{
|
||||
skipYou = new HashMap() {{
|
||||
put(PhaseStep.UPKEEP, true);
|
||||
put(PhaseStep.PRECOMBAT_MAIN, true);
|
||||
put(PhaseStep.BEGIN_COMBAT, true);
|
||||
|
@ -50,7 +50,7 @@ public class LoadPhaseManager {
|
|||
|
||||
private static Map<PhaseStep, Boolean> skipOthers;
|
||||
static {
|
||||
skipYou = new HashMap<>() {{
|
||||
skipYou = new HashMap() {{
|
||||
put(PhaseStep.UPKEEP, true);
|
||||
put(PhaseStep.PRECOMBAT_MAIN, true);
|
||||
put(PhaseStep.BEGIN_COMBAT, true);
|
||||
|
|
Loading…
Add table
Reference in a new issue