Skip to content

Commit 09c192e

Browse files
authored
SpellPowerBonus now scales with gear bonus instead of level (#56)
* Update Solocraft.cpp * Update Solocraft.conf.dist
1 parent 2342c3c commit 09c192e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

conf/Solocraft.conf.dist

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ SoloCraft.Debuff.Enable = 1
3939

4040
# Spellpower Bonus Multiplier
4141
# 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
4444
# Spellpower increase of 300.
4545

46-
# Default: 2.5
46+
# Default: 1.0
4747
# 0.0 (Disable)
48-
SoloCraft.Spellpower.Mult = 2.5
48+
SoloCraft.Spellpower.Mult = 1.0
4949

5050

5151
# Stats Percentage Bonus Multiplier

src/Solocraft.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
629629
// Debuffed characters do not get spellpower
630630
if (difficulty > 0)
631631
{
632-
SpellPowerBonus = static_cast<int>((player->GetLevel() * SoloCraftSpellMult) * difficulty);
632+
SpellPowerBonus = static_cast<int>((player->GetBaseSpellPowerBonus() * SoloCraftSpellMult) * difficulty);
633633
player->ApplySpellPowerBonus(SpellPowerBonus, true);
634634
}
635635
}

0 commit comments

Comments
 (0)