Skip to content

Commit

Permalink
bugfix: resting is too slow for healing
Browse files Browse the repository at this point in the history
  • Loading branch information
goblinhack committed Feb 7, 2025
1 parent 7feb179 commit 2b29b01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/thing_resting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ void Thing::resting(void)
stamina_boost(1);
}
} else {
if ((int) pcg_random_range(0, 200) < stat_str()) {
if ((int) pcg_random_range(0, 20) < stat_str()) {
health_boost(nullptr, 1);
stamina_boost(1);
}

if (d20() < stat_con()) {
Expand Down

0 comments on commit 2b29b01

Please sign in to comment.