mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fixed tooltips.
This commit is contained in:
parent
f9263d5d7d
commit
afaf0aab21
1 changed files with 4 additions and 2 deletions
|
@ -163,13 +163,15 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
|
||||||
for (String data : info.values()) {
|
for (String data : info.values()) {
|
||||||
rules.add(data);
|
rules.add(data);
|
||||||
}
|
}
|
||||||
return rules;
|
|
||||||
}
|
}
|
||||||
|
return rules;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.out.println("Exception in rules generation for card: " + this.getName());
|
System.out.println("Exception in rules generation for card: " + this.getName());
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
return new ArrayList<String>();
|
ArrayList<String> rules = new ArrayList<String>();
|
||||||
|
rules.add("Exception occured in rulge generation");
|
||||||
|
return rules;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue