diff options
Diffstat (limited to 'faction-03_fix-food-supply-calculations.patch')
-rw-r--r-- | faction-03_fix-food-supply-calculations.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/faction-03_fix-food-supply-calculations.patch b/faction-03_fix-food-supply-calculations.patch deleted file mode 100644 index 54e62ae..0000000 --- a/faction-03_fix-food-supply-calculations.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/src/faction.cpp -+++ b/src/faction.cpp -@@ -292,7 +292,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" ); - } -@@ -310,7 +310,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 ) { |