From a4f701aad25c86d33914d9f6602b1fdd509aca8c Mon Sep 17 00:00:00 2001
From: Inferno1882 <129122173+Inferno1882@users.noreply.github.com>
Date: Mon, 12 May 2025 23:41:40 -0500
Subject: [PATCH] Update watercloset.dm (#29172)
Small tweaks
Signed-off-by: Inferno1882 <129122173+Inferno1882@users.noreply.github.com>
---
code/game/objects/structures/watercloset.dm | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm
index c17e9267421..10c37f843f3 100644
--- a/code/game/objects/structures/watercloset.dm
+++ b/code/game/objects/structures/watercloset.dm
@@ -346,8 +346,6 @@ MAPPING_DIRECTIONAL_HELPERS_CUSTOM(/obj/machinery/shower, 16, -5, 0, 0)
pixel_y = -5
layer = FLY_LAYER
-//add heat controls? when emagged, you can freeze to death in it?
-
/obj/effect/mist
name = "mist"
icon = 'icons/obj/watercloset.dmi'
@@ -494,13 +492,10 @@ MAPPING_DIRECTIONAL_HELPERS_CUSTOM(/obj/machinery/shower, 16, -5, 0, 0)
var/mob/living/carbon/C = M
if(current_temperature == SHOWER_FREEZING)
- //C.bodytemperature = max(80, C.bodytemperature - 80)
to_chat(C, "The water is freezing!")
else if(current_temperature == SHOWER_BOILING)
- //C.bodytemperature = min(500, C.bodytemperature + 35)
- C.adjustFireLoss(5)
- to_chat(C, "The water is searing!")
+ to_chat(C, "The water is searing!")
#undef SHOWER_FREEZING
#undef SHOWER_NORMAL