Talk:Arc of Death
From DoomWiki.org
(Redirected from Talk:Arc of death)
Centaur and Slaughtaur special case[edit]
For future reference, here's the code, from p_map.c line 505: <source lang="C">
if(thing->type == MT_CENTAUR
|| thing->type == MT_CENTAURLEADER)
{ // Lightning does more damage to centaurs
P_DamageMobj(thing, tmthing, tmthing->target, 9);
}
else
{
P_DamageMobj(thing, tmthing, tmthing->target, 3);
}
</source>
