From a1248f389fe428af23fc5f56fcb6fefe9507ca18 Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Wed, 14 Jan 2026 23:34:26 -0500 Subject: [PATCH] 2026/01/14 Later update Rage Mage wasn't getting the correct number of uses of Spell Rage at 5th lvl. --- nwn/nwnprc/trunk/include/prc_inc_function.nss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nwn/nwnprc/trunk/include/prc_inc_function.nss b/nwn/nwnprc/trunk/include/prc_inc_function.nss index 5c791f07..2925ad5c 100644 --- a/nwn/nwnprc/trunk/include/prc_inc_function.nss +++ b/nwn/nwnprc/trunk/include/prc_inc_function.nss @@ -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); }