mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Minor code style tweak.
This commit is contained in:
@@ -126,7 +126,7 @@ public final class QuestUtilCards {
|
|||||||
|
|
||||||
for (String landName : MagicColor.Constant.BASIC_LANDS) {
|
for (String landName : MagicColor.Constant.BASIC_LANDS) {
|
||||||
int artCount = db.getArtCount(landName, landCode);
|
int artCount = db.getArtCount(landName, landCode);
|
||||||
int artGroups[] = MyRandom.splitIntoRandomGroups(nBasic, artCount);
|
int[] artGroups = MyRandom.splitIntoRandomGroups(nBasic, artCount);
|
||||||
|
|
||||||
for (int i=0; i<artGroups.length; i++) {
|
for (int i=0; i<artGroups.length; i++) {
|
||||||
pool.add(db.getCard(landName, landCode, i), artGroups[i]);
|
pool.add(db.getCard(landName, landCode, i), artGroups[i]);
|
||||||
|
|||||||
Reference in New Issue
Block a user