From dc15825102f1846877da9b16ef0df2b7b68b2ad0 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Tue, 7 Feb 2017 07:27:43 -0500 Subject: [PATCH] Fixes Xeno Eggs and Projectiles --- code/game/objects/effects/aliens.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 106c451ca09..19cbbd38c5a 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -363,7 +363,8 @@ break /obj/structure/alien/egg/bullet_act(obj/item/projectile/Proj) - health -= Proj.damage + if((Proj.damage_type == BRUTE || Proj.damage_type == BURN)) + health -= Proj.damage ..() healthcheck()