Skip to content

Commit

Permalink
need to reserve 2 advs, not just 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alium58 committed Nov 16, 2023
1 parent 70b0529 commit 23a132e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ string auto_combatDefaultStage1(int round, monster enemy, string text)
}

monster backedUpMonster = get_property("lastCopyableMonster").to_monster();
// reserve last adv for end of day free fights
boolean reserveAdvsForFreeFights = my_adventures() < 2 && !isFreeMonster(backedUpMonster);
// reserve last 2 advs for end of day free fights
boolean reserveAdvsForFreeFights = my_adventures() < 3 && !isFreeMonster(backedUpMonster);
if(auto_backupTarget() && enemy != backedUpMonster && canUse($skill[Back-Up to your Last Enemy])
&& !reserveAdvsForFreeFights)
{
Expand Down

0 comments on commit 23a132e

Please sign in to comment.