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