From 20d484b18147bcb11123978508c970b8399006c1 Mon Sep 17 00:00:00 2001 From: Charlie <69320440+hal9000PR@users.noreply.github.com> Date: Sun, 24 Jul 2022 19:19:57 +0100 Subject: [PATCH] removes garlic juice metacheck (#18439) --- code/modules/reagents/chemistry/reagents/food.dm | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/food.dm b/code/modules/reagents/chemistry/reagents/food.dm index 285be0eacc0..a63cfb089b0 100644 --- a/code/modules/reagents/chemistry/reagents/food.dm +++ b/code/modules/reagents/chemistry/reagents/food.dm @@ -350,18 +350,9 @@ var/update_flags = STATUS_UPDATE_NONE if(ishuman(M)) var/mob/living/carbon/human/H = M - var/datum/antagonist/vampire/V = H.mind?.has_antag_datum(/datum/antagonist/vampire) - if(V && !V.get_ability(/datum/vampire_passive/full)) //incapacitating but not lethal. - if(prob(min(25, current_cycle))) - to_chat(H, "You can't get the scent of garlic out of your nose! You can barely think...") - H.Weaken(2 SECONDS) - H.Jitter(20 SECONDS) - H.fakevomit() - else - if(H.job == "Chef") - if(prob(20)) //stays in the system much longer than sprinkles/banana juice, so heals slower to partially compensate - update_flags |= H.adjustBruteLoss(-1, FALSE) - update_flags |= H.adjustFireLoss(-1, FALSE) + if(H.job == "Chef" && prob(20)) //stays in the system much longer than sprinkles/banana juice, so heals slower to partially compensate + update_flags |= H.adjustBruteLoss(-1, FALSE) + update_flags |= H.adjustFireLoss(-1, FALSE) return ..() | update_flags /datum/reagent/consumable/sprinkles