File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,13 +39,13 @@ SoloCraft.Debuff.Enable = 1
39
39
40
40
# Spellpower Bonus Multiplier
41
41
# Spellcasters spellpower bonus multiplier to offset no spellpower received from stats
42
- # Formula: (player->level * multiplier) * ((classBalance / 100) * difficulty)
43
- # Example Level 24 Mage with default modifier and a dungeon difficulty of 5 will receive a base
42
+ # Formula: (player->spellpower * multiplier) * ((classBalance / 100) * difficulty)
43
+ # Example Mage with default modifier, 60 spel power bonus and a dungeon difficulty of 5 will receive a base
44
44
# Spellpower increase of 300.
45
45
46
- # Default: 2.5
46
+ # Default: 1.0
47
47
# 0.0 (Disable)
48
- SoloCraft.Spellpower.Mult = 2.5
48
+ SoloCraft.Spellpower.Mult = 1.0
49
49
50
50
51
51
# Stats Percentage Bonus Multiplier
Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
629
629
// Debuffed characters do not get spellpower
630
630
if (difficulty > 0 )
631
631
{
632
- SpellPowerBonus = static_cast <int >((player->GetLevel () * SoloCraftSpellMult) * difficulty);
632
+ SpellPowerBonus = static_cast <int >((player->GetBaseSpellPowerBonus () * SoloCraftSpellMult) * difficulty);
633
633
player->ApplySpellPowerBonus (SpellPowerBonus, true );
634
634
}
635
635
}
You can’t perform that action at this time.
0 commit comments