Commit 9024110124d3951934e3b8794036a289dce35e12

Authored by DarkGod
1 parent 7960654f

Fixed Rak'Shor's Cunning ghoul form to correctly benefit from the speed increase…

… when waddling in your own retch
... ... @@ -2607,7 +2607,7 @@ newDamageType{
2607 2607 useImplicitCrit(src, state)
2608 2608 local target = game.level.map(x, y, Map.ACTOR)
2609 2609
2610   - if target and src == target and target.type == "undead" and target.subtype == "ghoul" then
  2610 + if target and src == target and ((target.type == "undead" and target.subtype == "ghoul") or (target.descriptor and target.descriptor.subrace == "Ghoul")) then
2611 2611 target:setEffect(target.EFF_RETCHED, 1, {})
2612 2612 end
2613 2613
... ...