mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +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
|
if (set.getReleaseDate().before(current.getTime()) // This stops spoiled sets from counting as "new" blocks
|
||||||
&& set.getParentSet() == null
|
&& set.getParentSet() == null
|
||||||
&& set.getSetType() == SetType.EXPANSION) {
|
&& 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++;
|
blocksToAdd++;
|
||||||
}
|
}
|
||||||
blocksAdded++;
|
blocksAdded++;
|
||||||
|
|
Loading…
Reference in a new issue