updated how Saga abilities are added

still need to fix sacrificing works (#4875)
This commit is contained in:
Evan Kranzler 2018-04-27 18:22:49 -04:00
parent 4ac6e7d86c
commit f2835685e9
11 changed files with 147 additions and 52 deletions

View file

@ -53,4 +53,16 @@ public enum SagaChapter {
return number;
}
public static SagaChapter getChapter(int number) {
switch (number) {
case 1:
return CHAPTER_I;
case 2:
return CHAPTER_II;
case 3:
return CHAPTER_III;
default:
return null;
}
}
}