diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2025-01-18 21:46:00 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2025-01-18 21:46:00 -0800 |
commit | 7e224c97ae2728472180322f625dafa545f21f7f (patch) | |
tree | 61a296000b3a05d36cde4de0d8bd5e5179ee21ab /faction-03_fix-food-supply-calculations.patch | |
parent | Add plastic scrap is stackable patch. (diff) | |
download | cataclysm-bn-7e224c97ae2728472180322f625dafa545f21f7f.tar.xz |
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 ) { |