From d09400af15f81b7d7731f6f7928709082c032707 Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Wed, 10 Feb 2021 07:23:31 -0700 Subject: [PATCH] stop exploiting constructable showers --- code/game/objects/items/stacks/sheets/sheet_types.dm | 3 --- code/game/objects/structures/watercloset.dm | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 287f8157..817fcdce 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -50,9 +50,6 @@ GLOBAL_LIST_INIT(metal_recipes, list ( \ //END OF CIT CHANGES new/datum/stack_recipe("bed", /obj/structure/bed, 2, one_per_turf = TRUE, on_floor = TRUE), \ null, \ - //add this when I can find a way to make them easily constructible > new/datum/stack_recipe("sink", /obj/structure/sink, 2, one_per_turf = TRUE, on_floor = TRUE), - new/datum/stack_recipe("shower", /obj/machinery/shower/crafted, 2, one_per_turf = TRUE, on_floor = TRUE), \ - null, \ new/datum/stack_recipe("rack parts", /obj/item/rack_parts), \ new/datum/stack_recipe("closet", /obj/structure/closet, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ null, \ diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index 1d5b7eef..11a8e814 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -219,8 +219,8 @@ var/watertemp = "normal" //freezing, normal, or boiling var/datum/looping_sound/showering/soundloop -/obj/machinery/shower/crafted //When created from sheets of metal - anchored = FALSE +/*/obj/machinery/shower/crafted //When created from sheets of metal + anchored = FALSE */ //Stop exploiting this ree /obj/machinery/shower/Initialize() . = ..()