From 77772bab6d565d16b992affc7ff86b7c47e835f8 Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sat, 23 Nov 2024 14:59:42 +0000 Subject: [PATCH] Fixed Fluctuating growth rate's equation for levels above 100 --- Data/Scripts/010_Data/001_Hardcoded data/001_GrowthRate.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Scripts/010_Data/001_Hardcoded data/001_GrowthRate.rb b/Data/Scripts/010_Data/001_Hardcoded data/001_GrowthRate.rb index 2bf2e8fbd..18ba358c2 100644 --- a/Data/Scripts/010_Data/001_Hardcoded data/001_GrowthRate.rb +++ b/Data/Scripts/010_Data/001_Hardcoded data/001_GrowthRate.rb @@ -139,7 +139,7 @@ GameData::GrowthRate.register({ 765275, 804997, 834809, 877201, 908905, 954084, 987754, 1035837, 1071552, 1122660, 1160499, 1214753, 1254796, 1312322, 1354652, 1415577, 1460276, 1524731, 1571884, 1640000], :exp_formula => proc { |level| - next ((level**3) + ((level / 2) + 32)) * 4 / (100 + level) + next ((level**3) * ((level / 2) + 32)) * 4 / (100 + level) } })