mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Made FoilAlwaysInCommonSlot the default choice (since all current sets use this option anyway).
- Refactored the edition definitions, now slots newer than TSP do not include the FoilAlwaysInCommonSlot line, while the older sets with foils have a FoilAlwaysInCommonSlot=False line. - Some definition fixes related to foil generation.
This commit is contained in:
@@ -287,7 +287,7 @@ public final class CardEdition implements Comparable<CardEdition> { // immutable
|
||||
break;
|
||||
}
|
||||
res.foilChanceInBooster = section.getDouble("FoilChanceInBooster", 21.43F) / 100.0F;
|
||||
res.foilAlwaysInCommonSlot = section.getBoolean("FoilAlwaysInCommonSlot", false);
|
||||
res.foilAlwaysInCommonSlot = section.getBoolean("FoilAlwaysInCommonSlot", true);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user