2026/01/14 Later update

Rage Mage wasn't getting the correct number of uses of Spell Rage at 5th lvl.
This commit is contained in:
Jaysyn904
2026-01-14 23:34:26 -05:00
parent 81e7e1efdf
commit a1248f389f

View File

@@ -1572,7 +1572,7 @@ void BarbarianRage(object oPC)
if (nLevel > 0)
{
// Spell Rage: starts at 1st level, +1 use every 5 Rage Mage levels
int nUses = 1 + ((nLevel - 1) / 5);
int nUses = 1 + (nLevel / 5);
FeatUsePerDay(oPC, FEAT_SPELL_RAGE, -1, nUses);
}