From db6494470005eaa6373ee9c8a710403c47dbae2c Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 10 Feb 2018 17:25:11 +0000 Subject: [PATCH] Typo fix. --- src/entities/bullets/laser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities/bullets/laser.c b/src/entities/bullets/laser.c index 25d6846..1822f27 100644 --- a/src/entities/bullets/laser.c +++ b/src/entities/bullets/laser.c @@ -77,7 +77,7 @@ static void touch(Entity *other) game.statShotsHit[WPN_LASER]++; } - if (other->type == ET_BOB && !world.bob->stunTimer > 0) + if (other->type == ET_BOB && world.bob->stunTimer == 0) { other->dx = rrnd(-8, 8); other->dy = rrnd(-12, 0);