--- a/src/faction.cpp +++ b/src/faction.cpp @@ -323,7 +323,7 @@ std::string faction::food_supply_text() { //Convert to how many days you can support the population - int val = food_supply / ( size * 288 ); + int val = food_supply / ( size * 2500 ); if( val >= 30 ) { return pgettext( "Faction food", "Overflowing" ); } @@ -341,7 +341,7 @@ nc_color faction::food_supply_color() { - int val = food_supply / ( size * 288 ); + int val = food_supply / ( size * 2500 ); if( val >= 30 ) { return c_green; } else if( val >= 14 ) {