From f4018ccf73a9e0b19dc1d50dae8e5d9651f7b269 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Mon, 2 Apr 2012 18:34:47 +0100 Subject: [PATCH] Fixes being able to devour monkeys as a human. --- 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 bebe7db0328..30e6fda8c38 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -207,7 +207,7 @@ s_click(hud1) return if(M == assailant && state >= 2) - if( ( ishuman(user) /*&& (user.mutations & FAT)*/ && ismonkey(affecting) ) || ( isalien(user) && iscarbon(affecting) ) ) + if( ( ishuman(user) && (user.mutations & FAT) && ismonkey(affecting) ) || ( isalien(user) && iscarbon(affecting) ) ) var/mob/living/carbon/attacker = user for(var/mob/N in viewers(user, null)) if(N.client)