mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Removed unnecessary cast.
This commit is contained in:
@@ -2054,7 +2054,7 @@ public final class AbilityFactoryReveal {
|
|||||||
|
|
||||||
List<Card> orderedCards = GuiChoose.getOrderChoices("Select order to Rearrange", "Top of Library", 0, topCards, null, src);
|
List<Card> orderedCards = GuiChoose.getOrderChoices("Select order to Rearrange", "Top of Library", 0, topCards, null, src);
|
||||||
for (int i = maxCards - 1; i >= 0; i--) {
|
for (int i = maxCards - 1; i >= 0; i--) {
|
||||||
Card next = (Card) orderedCards.get(i);
|
Card next = orderedCards.get(i);
|
||||||
Singletons.getModel().getGame().getAction().moveToLibrary(next, 0);
|
Singletons.getModel().getGame().getAction().moveToLibrary(next, 0);
|
||||||
}
|
}
|
||||||
if (mayshuffle) {
|
if (mayshuffle) {
|
||||||
|
|||||||
Reference in New Issue
Block a user