Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
SabreML committed Dec 8, 2023
1 parent 50d32e8 commit 9e31dc4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/game/turfs/walls/walls.dm
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,6 @@
/turf/closed/wall/get_examine_text(mob/user)
. = ..()

if(flags_turf & TURF_ORGANIC)
return // Skip everything below. 'Organic' walls aren't deconstructable with tools.
if(hull)
.+= SPAN_WARNING("You don't think you have any tools able to even scratch this.")
return //If it's indestructable, we don't want to give the wrong impression by saying "you can decon it with a welder"
Expand All @@ -172,6 +170,9 @@
if (acided_hole)
. += SPAN_WARNING("There's a large hole in the wall that could've been caused by some sort of acid.")

if(flags_turf & TURF_ORGANIC)
return // Skip the part below. 'Organic' walls aren't deconstructable with tools.

switch(d_state)
if(WALL_STATE_WELD)
. += SPAN_INFO("The outer plating is intact. A blowtorch should slice it open.")
Expand Down

0 comments on commit 9e31dc4

Please sign in to comment.