From 324f039fdb8d0adb2c9b674771a5124abcec6d7c Mon Sep 17 00:00:00 2001 From: The Wolf Studios <33724974+TheWolfStudios@users.noreply.github.com> Date: Mon, 13 Feb 2023 19:24:52 -0600 Subject: [PATCH] Reminded about remove() --- code/datums/traits/good.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/datums/traits/good.dm b/code/datums/traits/good.dm index 7fe15b461..872f24e4a 100644 --- a/code/datums/traits/good.dm +++ b/code/datums/traits/good.dm @@ -292,6 +292,20 @@ lungs.heat_level_1_threshold = 400 lungs.heat_level_2_threshold = 600 + +/datum/quirk/low_pressure_lungs/remove() //*Unedits your lungs* + var/obj/item/organ/lungs/lungs = quirk_holder.getorgan(/obj/item/organ/lungs) + + lungs.safe_oxygen_min = 16 + lungs.safe_oxygen_max = 50 + + + lungs.cold_level_1_threshold = 260 + lungs.cold_level_2_threshold = 200 + lungs.cold_level_3_threshold = 120 + + lungs.heat_level_1_threshold = 360 + lungs.heat_level_2_threshold = 400 /datum/quirk/low_puressure_lungs/post_add() to_chat(quirk_holder, "Your [slot_string] feel the heavy pressure of the air.")