* Grand Abolisher - Fixed missing tooltip text.

This commit is contained in:
LevelX2 2014-05-14 00:15:53 +02:00
parent 2473ddd38d
commit 4ccc85573f
2 changed files with 8 additions and 8 deletions

View file

@ -63,8 +63,9 @@ public class MageInt implements Serializable, Copyable<MageInt> {
@Override
public MageInt copy() {
if (this == EmptyMageInt)
if (this == EmptyMageInt) {
return this;
}
return new MageInt(baseValue, cardValue);
}