2025/06/07 Evening Update

Fixed Opportunistic Piety & Turning.
Fixed Midnight Augmentation.
This commit is contained in:
Jaysyn904
2025-06-07 20:48:29 -04:00
parent 01f4c1b408
commit a668be703a
4 changed files with 59 additions and 33 deletions

View File

@@ -61,13 +61,13 @@ void main()
int nItemType = GetBaseItemType(oItem);
if(nItemType == BASE_ITEM_CBLUDGWEAPON
|| BASE_ITEM_CPIERCWEAPON
|| BASE_ITEM_CSLASHWEAPON
|| BASE_ITEM_CSLSHPRCWEAP)
{
DestroyObject(oItem);
}
if(nItemType == BASE_ITEM_CBLUDGWEAPON
|| nItemType == BASE_ITEM_CPIERCWEAPON
|| nItemType == BASE_ITEM_CSLASHWEAPON
|| nItemType == BASE_ITEM_CSLSHPRCWEAP)
{
DestroyObject(oItem);
}
int nClaw = GetStringLeft(GetResRef(oItem), 12) == "prc_diaclaw_" ? TRUE : FALSE;
if(nClaw)DestroyObject(oItem);