From c1b98445f615593c5202e7d40cb8809b1ec5d053 Mon Sep 17 00:00:00 2001 From: Gboster-0 <82319946+Gboster-0@users.noreply.github.com> Date: Mon, 22 Jan 2024 05:01:05 +0100 Subject: [PATCH] boop --- monkestation/code/modules/reagents/fun/liquid_justice.dm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/monkestation/code/modules/reagents/fun/liquid_justice.dm b/monkestation/code/modules/reagents/fun/liquid_justice.dm index e8a71415045b..9ee13f65800e 100644 --- a/monkestation/code/modules/reagents/fun/liquid_justice.dm +++ b/monkestation/code/modules/reagents/fun/liquid_justice.dm @@ -5,12 +5,9 @@ metabolization_rate = 1.5 * REAGENTS_METABOLISM ph = 0 -/* -Liquid justce - Metabolizes 50% quicker than phlogiston, gives double the firestacks but dosent deal direct fire damage -*/ - +// Metabolizes 50% quicker than phlogiston, gives double firestacks. Also does not deal direct fire damage (very rare for fire reagents) /datum/reagent/liquid_justice/on_mob_life(mob/living/carbon/affected_mob, seconds_per_tick, times_fired) - // if you don't have a liver, or your liver isn't an officer's liver + . = ..() var/obj/item/organ/internal/liver/liver = affected_mob.get_organ_slot(ORGAN_SLOT_LIVER) if(!liver || !HAS_TRAIT(liver, TRAIT_LAW_ENFORCEMENT_METABOLISM)) affected_mob.adjust_fire_stacks(2 * REM * seconds_per_tick)