From 0952977020eaf02950d241a5158d03e243eedd5d Mon Sep 17 00:00:00 2001 From: Octus <62493359+OctusGit@users.noreply.github.com> Date: Sat, 6 Jan 2024 15:51:06 -0600 Subject: [PATCH] mhm (#23642) --- .../reagents/chemistry/reagents/drinks_reagents.dm | 4 ---- .../reagents/chemistry/reagents/food_reagents.dm | 12 +----------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/drinks_reagents.dm b/code/modules/reagents/chemistry/reagents/drinks_reagents.dm index 2b62c63e9c3..27d2d5977ce 100644 --- a/code/modules/reagents/chemistry/reagents/drinks_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drinks_reagents.dm @@ -271,10 +271,6 @@ /datum/reagent/consumable/drink/hot_coco/on_mob_life(mob/living/M) if(M.bodytemperature < 310) // 310 is the normal bodytemp. 310.055 M.bodytemperature = min(310, M.bodytemperature + (5 * TEMPERATURE_DAMAGE_COEFFICIENT)) - var/update_flags = STATUS_UPDATE_NONE - if(isvulpkanin(M) || istajaran(M) || isfarwa(M) || iswolpin(M)) - update_flags |= M.adjustToxLoss(2, FALSE) - return ..() | update_flags /datum/reagent/consumable/drink/coffee name = "Coffee" diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index 50807d7b54f..2a541a575d8 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -343,12 +343,6 @@ color = "#5F3A13" taste_description = "bitter cocoa" -/datum/reagent/consumable/cocoa/on_mob_life(mob/living/M) - var/update_flags = STATUS_UPDATE_NONE - if(isvulpkanin(M) || istajaran(M) || isfarwa(M) || iswolpin(M)) - update_flags |= M.adjustToxLoss(2, FALSE) - return ..() | update_flags - /datum/reagent/consumable/vanilla name = "Vanilla" id = "vanilla" @@ -603,10 +597,6 @@ /datum/reagent/consumable/chocolate/on_mob_life(mob/living/M) M.reagents.add_reagent("sugar", 0.8) - var/update_flags = STATUS_UPDATE_NONE - if(isvulpkanin(M) || istajaran(M) || isfarwa(M) || iswolpin(M)) // chocolate is bad for dogs and cats, ya know - update_flags |= M.adjustToxLoss(2, FALSE) - return ..() | update_flags /datum/reagent/consumable/chocolate/reaction_turf(turf/T, volume) if(volume >= 5 && !isspaceturf(T)) @@ -618,7 +608,7 @@ description = "A rather bitter herb once thought to hold magical protective properties." reagent_state = LIQUID color = "#21170E" - process_flags = ORGANIC | SYNTHETIC + process_flags = ORGANIC | SYNTHETIC taste_description = "tea" harmless = TRUE