From fa2da1ead6dffcefae7e7379485ecd49bb586821 Mon Sep 17 00:00:00 2001 From: Little-119 Date: Wed, 13 Jun 2018 16:30:49 -0400 Subject: [PATCH] Makes synths able to taste again Comments out the code added by commit 04ea07fb02e3a5d476db321a24602a8efcb40627 Since Aronai said he made synths able to taste a year ago, and synths not being able to taste was a goof --- code/modules/mob/living/carbon/taste.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/taste.dm b/code/modules/mob/living/carbon/taste.dm index da0ee4a804..f02e704721 100644 --- a/code/modules/mob/living/carbon/taste.dm +++ b/code/modules/mob/living/carbon/taste.dm @@ -1,10 +1,11 @@ /mob/living/carbon/proc/ingest(var/datum/reagents/from, var/datum/reagents/target, var/amount = 1, var/multiplier = 1, var/copy = 0) //we kind of 'sneak' a proc in here for ingesting stuff so we can play with it. + /* VOREStation Removal - Synths should be able to taste because... reasons if(ishuman(src)) var/mob/living/carbon/human/H = src var/braintype = H.get_FBP_type() if(braintype == FBP_DRONE || braintype == FBP_POSI) return from.trans_to_holder(target,amount,multiplier,copy) //skip the taste, complete transfer - + */ if(last_taste_time + 50 < world.time) var/datum/reagents/temp = new(amount) //temporary holder used to analyse what gets transfered. from.trans_to_holder(temp, amount, multiplier, 1)