mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
WA: fixed Saga abilities
This commit is contained in:
@@ -275,9 +275,17 @@ public class WrappedAbility extends Ability {
|
|||||||
return sa.isCycling();
|
return sa.isCycling();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isLastSaga() {
|
public boolean isChapter() {
|
||||||
return sa.isLastSaga();
|
return sa.isChapter();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getChapter() {
|
||||||
|
return sa.getChapter();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChapter(int val) {
|
||||||
|
sa.setChapter(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user