From 7e224c97ae2728472180322f625dafa545f21f7f Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 18 Jan 2025 21:46:00 -0800 Subject: Convert the PKGBUILD to my own fork of cataclysm-bn. --- faction-03_fix-food-supply-calculations.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 faction-03_fix-food-supply-calculations.patch (limited to 'faction-03_fix-food-supply-calculations.patch') 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 ) { -- cgit v1.2.1