Skip to content
Snippets Groups Projects
Commit 90241101 authored by DarkGod's avatar DarkGod
Browse files

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

Fixed Rak'Shor's Cunning ghoul form to correctly benefit from the speed increase when waddling in your own retch
parent 7960654f
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment