Skip to content

Commit

Permalink
Merge pull request #103 from Voker57/tweaks
Browse files Browse the repository at this point in the history
Make metabolic exchange a little faster
  • Loading branch information
TheDarklingWolf committed Feb 24, 2013
2 parents 826a3b8 + 2ae2883 commit 6e46b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ void player::reset(game *g)
if (has_bionic(bio_armor_arms))
dex_cur--;
if (has_bionic(bio_metabolics) && power_level < max_power_level &&
hunger < 100 && (int(g->turn) % 20 == 0)) {
hunger < 100 && (int(g->turn) % 5 == 0)) {
hunger += 2;
power_level++;
}
Expand Down

0 comments on commit 6e46b94

Please sign in to comment.