From 86e88416186f8b0110232633b4d920c1fcf140d6 Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Thu, 29 May 2025 19:41:57 -0400 Subject: [PATCH] Fixed Warblade's missing EWS. Fixed Warblade's missing Epic Weapon Specialization --- nwn/nwnprc/trunk/include/prc_weap_apt.nss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nwn/nwnprc/trunk/include/prc_weap_apt.nss b/nwn/nwnprc/trunk/include/prc_weap_apt.nss index 7b35caa6..8fa1043c 100644 --- a/nwn/nwnprc/trunk/include/prc_weap_apt.nss +++ b/nwn/nwnprc/trunk/include/prc_weap_apt.nss @@ -112,7 +112,9 @@ int GetEpicWeaponSpecializationFeatItemProperty(int nFeatNumber) nItemProperty = GetFeatItemProperty(nFeatNumber, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_EAGLE_CLAW, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_EAGLE_CLAW); if(nItemProperty != -1) return nItemProperty; nItemProperty = GetFeatItemProperty(nFeatNumber, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_TRIDENT, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_TRIDENT); - if(nItemProperty != -1) return nItemProperty; + if(nItemProperty != -1) return nItemProperty; + nItemProperty = GetFeatItemProperty(nFeatNumber, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_CLUB, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_MINDBLADE); + if(nItemProperty != -1) return nItemProperty; nItemProperty = GetFeatItemProperty(nFeatNumber, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_LIGHT_LANCE, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_GOAD); if(nItemProperty != -1) return nItemProperty; nItemProperty = GetFeatItemProperty(nFeatNumber, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_ELVEN_LIGHTBLADE, IP_CONST_FEAT_EPIC_WEAPON_SPECIALIZATION_ELVEN_LIGHTBLADE);