Skip to content

Commit

Permalink
Make metabolic exchange a little faster
Browse files Browse the repository at this point in the history
  • Loading branch information
Voker57 committed Feb 24, 2013
1 parent 60b16b5 commit 2ae2883
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 2ae2883

Please sign in to comment.