mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Moved getCard to CardImpl, no need to override it in card implementation anymore. Updated recent Seaside Citadel as example.
This commit is contained in:
parent
237ffabafb
commit
6e347d835a
2 changed files with 4 additions and 5 deletions
|
@ -60,9 +60,4 @@ public class SeasideCitadel extends CardImpl<SeasideCitadel> {
|
||||||
public SeasideCitadel copy() {
|
public SeasideCitadel copy() {
|
||||||
return new SeasideCitadel(this);
|
return new SeasideCitadel(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getArt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -265,4 +265,8 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getArt() {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue