mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Looks like combat phases are counted from 0 up? (fixes Finest Hour and possibly other cards that trigger "at first combat phase").
This commit is contained in:
@@ -855,7 +855,7 @@ public class PhaseHandler implements java.io.Serializable {
|
||||
}
|
||||
|
||||
public final boolean isFirstCombat() {
|
||||
return (nCombatsThisTurn == 1);
|
||||
return (nCombatsThisTurn == 0);
|
||||
}
|
||||
|
||||
public final boolean isFirstUpkeep() {
|
||||
|
||||
Reference in New Issue
Block a user