Bob's laser should ignore Teeka.

This commit is contained in:
Steve 2018-03-31 19:04:34 +01:00
parent 14dbe2b39c
commit 55b163873d
1 changed files with 32 additions and 26 deletions

View File

@ -48,14 +48,21 @@ static void tick(void)
static void touch(Entity *other)
{
Bullet *b;
int canHit;
b = (Bullet*)self;
if (b->alive == ALIVE_ALIVE)
{
if (other != b->owner)
{
if (other != NULL && (!(other->flags & EF_IGNORE_BULLETS)) && b->owner->type != other->type)
canHit = (
other != NULL &&
other != b->owner &&
(!(other->flags & EF_IGNORE_BULLETS)) &&
b->owner->type != other->type &&
!((b->owner->type == ET_TEEKA && other->type == ET_BOB) || (b->owner->type == ET_BOB && other->type == ET_TEEKA))
);
if (canHit)
{
if (other->flags & EF_EXPLODES)
{
@ -87,4 +94,3 @@ static void touch(Entity *other)
}
}
}
}