mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
fixed an exception in Tezzeret the Seeker
This commit is contained in:
@@ -724,7 +724,7 @@ public class CardFactory_Planeswalkers {
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (list.size() > 0) {
|
if (list.size() > 0) {
|
||||||
Object o = GuiUtils.getChoiceOptional("Select artifact", list);
|
Object o = GuiUtils.getChoiceOptional("Select artifact", list.toArray());
|
||||||
if (o != null) {
|
if (o != null) {
|
||||||
Card c = (Card) o;
|
Card c = (Card) o;
|
||||||
if (list.contains(c)) {
|
if (list.contains(c)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user