diff --git a/game/modules/tome/data/damage_types.lua b/game/modules/tome/data/damage_types.lua index 4a9336e5d5ad948427ec8fb07c1330b13c9e8c02..00ed04a22f35104d386cafc31031b5627d537706 100644 --- a/game/modules/tome/data/damage_types.lua +++ b/game/modules/tome/data/damage_types.lua @@ -2607,7 +2607,7 @@ newDamageType{ useImplicitCrit(src, state) local target = game.level.map(x, y, Map.ACTOR) - if target and src == target and target.type == "undead" and target.subtype == "ghoul" then + if target and src == target and ((target.type == "undead" and target.subtype == "ghoul") or (target.descriptor and target.descriptor.subrace == "Ghoul")) then target:setEffect(target.EFF_RETCHED, 1, {}) end