Skip to content

Commit

Permalink
ai: don't overvalue stonewall
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Feb 17, 2024
1 parent ff94dcd commit ffe0a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rs/src/aieval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ fn eval_skill(
Skill::steal | Skill::v_steal => 6 * PREC,
Skill::steam => 6 * PREC,
Skill::stoneform | Skill::v_stoneform => PREC,
Skill::stonewall => quantamap.get(ctx.get_owner(c), etg::Earth) as i32 * PREC,
Skill::stonewall => quantamap.get(ctx.get_owner(c), etg::Earth) as i32,
Skill::storm(x) | Skill::v_storm(x) | Skill::firestorm(x) => x as i32 * (PREC * 4),
Skill::summon(FateEgg) => 3 * PREC,
Skill::summon(FateEggUp) => 4 * PREC,
Expand Down

0 comments on commit ffe0a19

Please sign in to comment.