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

This commit is contained in:
vincentiusvin
2021-12-15 01:08:41 -08: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
+2 -1
View File
@@ -174,10 +174,11 @@
icon_state = "iron_wall-0"
base_icon_state = "iron_wall"
sheet_type = /obj/item/stack/rods
sheet_amount = 5
smoothing_flags = SMOOTH_BITMASK
smoothing_groups = list(SMOOTH_GROUP_CLOSED_TURFS, SMOOTH_GROUP_WALLS, SMOOTH_GROUP_IRON_WALLS)
canSmoothWith = list(SMOOTH_GROUP_IRON_WALLS)
custom_materials = list(/datum/material/iron = 4000)
custom_materials = list(/datum/material/iron = 5000)
/turf/closed/wall/mineral/snow
name = "packed snow wall"