Reduce bonus attribute bonus

This commit is contained in:
2024-12-09 21:11:02 +01:00
parent dd3c227447
commit b1ca039574

View File

@@ -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);
}