Fixed rough iron false wall alert text and rough iron wall deconstruction amount. (#63389)

This commit is contained in:
vincentiusvin
2021-12-15 16:08:41 +07:00
committed by GitHub
parent 2834383245
commit d69dd1f1dd
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -289,7 +289,7 @@
canSmoothWith = list(SMOOTH_GROUP_WOOD_WALLS)
/obj/structure/falsewall/iron
name = "rough metal wall"
name = "rough iron wall"
desc = "A wall with rough metal plating."
icon = 'icons/turf/walls/iron_wall.dmi'
icon_state = "iron_wall-0"
+2 -2
View File
@@ -60,9 +60,9 @@
var/obj/item/stack/rods/S = W
if(state == GIRDER_DISPLACED)
if(S.get_amount() < 5)
to_chat(user, span_warning("You need at least two rods to create a false wall!"))
to_chat(user, span_warning("You need at least five rods to create a false wall!"))
return
to_chat(user, span_notice("You start building a reinforced false wall..."))
to_chat(user, span_notice("You start building a false wall..."))
if(do_after(user, 20, target = src))
if(S.get_amount() < 5)
return