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