From e40a86c0fe02194f02ccf797c8e9d8af2eb534c5 Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Sat, 26 Aug 2023 10:38:29 -0400 Subject: [PATCH] Update prc_snowflake.nss Added whip & eagle claw to Snowflake Wardance. --- nwn/nwnprc/trunk/scripts/prc_snowflake.nss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nwn/nwnprc/trunk/scripts/prc_snowflake.nss b/nwn/nwnprc/trunk/scripts/prc_snowflake.nss index 8c7506cd..37c3559b 100644 --- a/nwn/nwnprc/trunk/scripts/prc_snowflake.nss +++ b/nwn/nwnprc/trunk/scripts/prc_snowflake.nss @@ -36,7 +36,9 @@ int GetIsOnehandedSlashingWeapon(object oWeapon) GetBaseItemType(oWeapon) == BASE_ITEM_BASTARDSWORD || GetBaseItemType(oWeapon) == BASE_ITEM_SICKLE || GetBaseItemType(oWeapon) == BASE_ITEM_KATANA || - GetBaseItemType(oWeapon) == BASE_ITEM_DWARVENWARAXE) + GetBaseItemType(oWeapon) == BASE_ITEM_WHIP || + GetBaseItemType(oWeapon) == BASE_ITEM_EAGLE_CLAW || + GetBaseItemType(oWeapon) == BASE_ITEM_DWARVENWARAXE) { return TRUE; }