GameAction: add canBeSacrificed check, no need to do the other checks later

This commit is contained in:
Hanmac
2018-04-30 07:17:11 +02:00
parent 66ac3ee63c
commit cc654b56a1

View File

@@ -1089,6 +1089,9 @@ public class GameAction {
if (!c.getType().hasSubtype("Saga")) {
return false;
}
if (!c.canBeSacrificed()) {
return false;
}
if (c.getCounters(CounterType.LORE) < c.getFinalChapterNr()) {
return false;
}