From e83412ddd3b5a3c13f5df9c8709a00f3ed825a3c Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Fri, 25 Aug 2023 06:08:49 +0200 Subject: [PATCH] [s] Fixes a stupid oversight (#22100) * I HATE PEOPLE AAAAA * Last change --- code/game/objects/structures/girders.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 9cdec853759..6ea253e12f1 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -80,6 +80,9 @@ if (locate(/obj/structure/falsewall) in loc.contents) to_chat(user, "There is already a false wall present!") return + if(islava(loc)) + to_chat(user, "You can't do that while [src] is in lava!") + return if(istype(W, /obj/item/stack/sheet/runed_metal)) to_chat(user, "You can't seem to make the metal bend.") return