Skip to content

Commit

Permalink
feat(single-mode): increase expected score by mood
Browse files Browse the repository at this point in the history
  • Loading branch information
NateScarlet committed Jun 20, 2021
1 parent 543fcf2 commit 17f9e06
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions auto_derby/single_mode/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ def expected_score(self) -> float:
expected_score -= 20
if can_heal_condition and self.CONDITION_HEADACHE in self.conditions:
expected_score += 20
expected_score += (self.MOOD_VERY_GOOD[0] - self.mood[0]) * 40 * 3

return expected_score

Expand Down

0 comments on commit 17f9e06

Please sign in to comment.