diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index 8056540ccd6..b37ada643e3 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -1617,9 +1617,11 @@ All effects don't start immediately, but rather get worse over time; the rate is //Securidrink in line with the Screwdriver for engineers or Nothing for mimes var/obj/item/organ/liver/liver = M.getorganslot(ORGAN_SLOT_LIVER) if(liver && HAS_TRAIT(liver, TRAIT_LAW_ENFORCEMENT_METABOLISM)) - M.heal_bodypart_damage(brute = 1, burn = 1) - M.adjustBruteLoss(-2,0) - . = 1 + if(istype(get_area(M), /area/security)) // Skyrat edit , it checks for area now - Start + M.heal_bodypart_damage(brute = 1, burn = 1) + M.adjustBruteLoss(-2,0) + . = 1 + return ..() // SKYRAT EDIT: End - This line and the above few have only indentation changes. return ..() /datum/reagent/consumable/ethanol/quintuple_sec @@ -2396,4 +2398,3 @@ All effects don't start immediately, but rather get worse over time; the rate is glass_icon_state = "godmother" glass_name = "Godmother" glass_desc = "A lovely fresh smelling cocktail, a true Sicilian delight." -