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)