From 17b78ad54ee013a4d899a4227a65066cce4f0812 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 13 Jan 2021 22:58:56 +0200 Subject: [PATCH] Allows feeding synths A completely unnecessary no-fun-allowed check for a lewd scene ability. Crew synths use the nutrition var just like the rest of the crew do so there's no mechanical reason for this to not work on them. --- .../human/species/station/station_special_abilities_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index 63158f9cba1..db223014b7a 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -566,7 +566,7 @@ return var/mob/living/carbon/human/T = G.affecting // I must say, this is a quite ingenious way of doing it. Props to the original coders. - if(!istype(T) || T.isSynthetic()) + if(!istype(T)) to_chat(src, "\The [T] is not able to be fed.") return