- Minor code style tweak.

This commit is contained in:
Agetian
2014-01-15 16:01:57 +00:00
parent f131aafa44
commit 5c4efbcd04

View File

@@ -126,7 +126,7 @@ public final class QuestUtilCards {
for (String landName : MagicColor.Constant.BASIC_LANDS) {
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++) {
pool.add(db.getCard(landName, landCode, i), artGroups[i]);