From b66603a37c0d79722c849afbf6348537465c4540 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 3 May 2015 08:28:28 -0700 Subject: [PATCH] Prevent fat humans from eating xenomorphs This commit prevents fat humans from eating xenomorphs, now that you can grab xenomorphs properly. This is not soviet russia, xenomorph eat you. --- code/modules/mob/mob_grab.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index a15cf352e25..1a7360185ef 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -213,7 +213,7 @@ del(src) /obj/item/weapon/grab/proc/checkvalid(var/mob/attacker, var/mob/prey) //does all the checking for the attack proc to see if a mob can eat another with the grab - if(ishuman(attacker) && (FAT in attacker.mutations) && iscarbon(prey)) //Fat people eating carbon mobs + if(ishuman(attacker) && (FAT in attacker.mutations) && iscarbon(prey) && !isalien(prey)) //Fat people eating carbon mobs but not xenos return 1 if(isalien(attacker) && iscarbon(prey)) //Xenomorphs eating carbon mobs