From d6c2f265ef0f6de5779f09e26f4881bb8c599983 Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:08:23 -0400 Subject: [PATCH] Update prc_enforce_mark.nss Fixed: Fist of Raziel marker feat check was checking the wrong class. --- nwn/nwnprc/trunk/scripts/prc_enforce_mark.nss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nwn/nwnprc/trunk/scripts/prc_enforce_mark.nss b/nwn/nwnprc/trunk/scripts/prc_enforce_mark.nss index 336c8b81..db681a08 100644 --- a/nwn/nwnprc/trunk/scripts/prc_enforce_mark.nss +++ b/nwn/nwnprc/trunk/scripts/prc_enforce_mark.nss @@ -1406,7 +1406,7 @@ int EnlightendFistMarkerFeats() //:; Enforces Fist of Raziel marker feats int FistOfRazielMarkerFeats() { - if(GetLevelByClass(CLASS_TYPE_ENLIGHTENEDFIST)) + if(GetLevelByClass(CLASS_TYPE_FISTRAZIEL)) { int nRaziel = GetHasFeat(FEAT_FISTRAZIEL_SPELLCASTING_ARCHIVIST) + GetHasFeat(FEAT_FISTRAZIEL_SPELLCASTING_CLERIC)