Merge pull request #54 from Clownacy/master

Fixed inaccuracy in NPC121 (Colon)
This commit is contained in:
Cucky 2019-02-10 18:11:36 -05:00 committed by GitHub
commit 4e5b2435c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,7 +66,8 @@ void ActNpc121(NPCHAR *npc)
npc->rect = rect[npc->ani_no]; npc->rect = rect[npc->ani_no];
} }
else
{
npc->rect = rect[2]; npc->rect = rect[2];
if (++npc->act_wait > 100) if (++npc->act_wait > 100)
@ -74,6 +75,7 @@ void ActNpc121(NPCHAR *npc)
npc->act_wait = 0; npc->act_wait = 0;
SetCaret(npc->x, npc->y, 5, 0); SetCaret(npc->x, npc->y, 5, 0);
} }
}
} }
//Colon (attacking) //Colon (attacking)