From d6e1f3f902656be782fce2d7371dffcabe6d7316 Mon Sep 17 00:00:00 2001 From: TheSardele Date: Sun, 25 Aug 2019 18:48:46 +0200 Subject: [PATCH] Removes the ability of obese and matter eater to swallow people With this change, human carbons can no longer swallow others by having the matter eater or obese genes. --- code/modules/mob/mob_grab.dm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index 077164be6b7..805d48fdd9f 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -409,12 +409,6 @@ qdel(src) /obj/item/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) && (/datum/dna/gene/basic/grant_spell/mattereater in attacker.active_genes)) // MATTER EATER CARES NOT OF YOUR FORM - return 1 - - 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 return 1