WA: fixed Saga abilities

This commit is contained in:
Hanmac
2018-04-30 06:51:01 +02:00
parent 910dc4fb26
commit 66ac3ee63c

View File

@@ -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