Skip to content

Commit

Permalink
Eliminate "Peckish" (#39760)
Browse files Browse the repository at this point in the history
* Eliminate "Peckish"

* Remove uneeded stomach contents check
  • Loading branch information
kevingranade authored May 15, 2020
1 parent 7c85b10 commit 96b6e0d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/character.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4301,10 +4301,6 @@ std::pair<std::string, nc_color> Character::get_hunger_description() const
} else if( recently_ate && contains >= cap * 3 / 8 ) {
hunger_string = _( "Full" );
hunger_color = c_green;
} else if( ( stomach.time_since_ate() > 90_minutes && contains < cap / 8 && recently_ate ) ||
( just_ate && contains > 0_ml && contains < cap * 3 / 8 ) ) {
hunger_string = _( "Peckish" );
hunger_color = c_dark_gray;
} else if( !just_ate && ( recently_ate || contains > 0_ml ) ) {
hunger_string.clear();
} else {
Expand Down

0 comments on commit 96b6e0d

Please sign in to comment.