From 8dd4fe61be4b6016df7474c43f661ed688d9e80b Mon Sep 17 00:00:00 2001
From: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com>
Date: Thu, 3 Nov 2022 13:55:47 -0400
Subject: [PATCH] moving some returns around (#19591)
---
code/game/turfs/simulated/walls.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm
index f7ccaa652ac..58bec0c3e19 100644
--- a/code/game/turfs/simulated/walls.dm
+++ b/code/game/turfs/simulated/walls.dm
@@ -424,7 +424,7 @@
to_chat(user, "Your [I.name] tears though the last of the reinforced plating.")
dismantle_wall()
visible_message("[user] drills through [src]!", "You hear the grinding of metal.")
- return TRUE
+ return TRUE
else if(istype(I, /obj/item/pickaxe/drill/jackhammer))
to_chat(user, "You begin to disintegrates the wall.")
@@ -433,7 +433,7 @@
to_chat(user, "Your [I.name] disintegrates the reinforced plating.")
dismantle_wall()
visible_message("[user] disintegrates [src]!","You hear the grinding of metal.")
- return TRUE
+ return TRUE
else if(istype(I, /obj/item/twohanded/required/pyro_claws))
to_chat(user, "You begin to melt the wall.")
@@ -442,7 +442,7 @@
to_chat(user, "Your [I.name] melts the reinforced plating.")
dismantle_wall()
visible_message("[user] melts [src]!","You hear the hissing of steam.")
- return TRUE
+ return TRUE
return FALSE
/turf/simulated/wall/proc/try_wallmount(obj/item/I, mob/user, params)