mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
Improvements to limited with Freeform Unlimited Commander (#10114)
* Limited-style sideboarding with unlimited basics enabled for Freeform Unlimited Commander * FreeformUnlimitedCommander does not depend on FreeformCommanderFreeForAll anymore. FreeformUnlimitedCommander has sideboarding. In two-player matches of FreeformUnlimitedCommander, the player who goes first doesn't draw a card on their first turn anymore. * FreeformUnlimitedCommanderTypeTest takes into account that sideboarding is allowed * Fix to startingPlayerSkipsDraw condition --------- Co-authored-by: sprangg <a@b.c>
This commit is contained in:
parent
91d7a0a88c
commit
99701e08e7
6 changed files with 61 additions and 10 deletions
|
|
@ -90,11 +90,11 @@ public class FreeformUnlimitedCommanderTypeTest extends MageTestPlayerBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void test_isSideboardingAllowed_returnsFalse() {
|
||||
public void test_isSideboardingAllowed_returnsTrue() {
|
||||
// Arrange
|
||||
MatchType gametype = new FreeformUnlimitedCommanderType();
|
||||
|
||||
// Assert
|
||||
Assert.assertFalse(gametype.isSideboardingAllowed());
|
||||
Assert.assertTrue(gametype.isSideboardingAllowed());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue