From b1ca039574349070a3d718163ce11e57f3c60dae Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Mon, 9 Dec 2024 21:11:02 +0100 Subject: [PATCH] Reduce bonus attribute bonus --- Projects/CykaOfQud/Patches.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/CykaOfQud/Patches.cs b/Projects/CykaOfQud/Patches.cs index d9b2152..67f474c 100644 --- a/Projects/CykaOfQud/Patches.cs +++ b/Projects/CykaOfQud/Patches.cs @@ -70,9 +70,9 @@ namespace CykaOfIndustry { static void attributeBonusPerLevelMultiplier(StringBuilder sb, ref int ABGain) { if (Main.debugMode.Value) Console.WriteLine("CykaOfQud: AddAttributeBonus: Old AB for level {0}", ABGain); - if (ABGain == 0) - ABGain = 1; ABGain = (int)(ABGain * Main.attributeBonusPerLevelMultiplier.Value); + if (ABGain == 0) + ABGain = 2; if (Main.debugMode.Value) Console.WriteLine("CykaOfQud: AddAttributeBonus: New AB for level {0}", ABGain); }