Amend previous spider and lion code slightly.

This commit is contained in:
sirlemonhead 2019-11-30 16:20:25 +00:00 committed by Christoph Oelckers
parent 9e44478467
commit 33eeb3956f

View file

@ -400,6 +400,11 @@ case_3:
SpiderList[nSpider].nHealth -= nDamage;
if (SpiderList[nSpider].nHealth > 0)
{
/*
TODO - nTarget check was added, but should we return if it's invalid instead
or should code below (action set, b set) happen?
Other AI doesn't show consistency in this regard (see Scorpion code)
*/
if (nTarget > -1 && sprite[nTarget].statnum == 100)
{
SpiderList[nSpider].nTarget = nTarget;