mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
* Fixed handling of standard set rotation(fixes #3260).
This commit is contained in:
parent
ab352a3c6b
commit
4d60685c05
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public class Standard extends Constructed {
|
|||
if (set.getReleaseDate().before(current.getTime()) // This stops spoiled sets from counting as "new" blocks
|
||||
&& set.getParentSet() == null
|
||||
&& set.getSetType() == SetType.EXPANSION) {
|
||||
if (blocksAdded == 0 && !isFallBlock(set)) { // if the most current block is a fall block, 4 blocks are added
|
||||
if (blocksAdded == 0 && !isFallBlock(set)) { // if the most current block is no fall block, 4 blocks are added
|
||||
blocksToAdd++;
|
||||
}
|
||||
blocksAdded++;
|
||||
|
|
Loading…
Reference in a new issue