Convert some bools to TRUE/FALSE instead of 1/0.

This commit is contained in:
Chompstation Bot
2021-07-16 17:44:40 +00:00
parent 1be5570337
commit 481c0e314e
523 changed files with 6976 additions and 1284 deletions

View File

@@ -2,10 +2,10 @@
name = "rock ledge"
desc = "An easily scaleable rocky ledge."
icon = 'icons/obj/ledges.dmi'
density = 1
density = TRUE
throwpass = 1
climbable = 1
anchored = 1
climbable = TRUE
anchored = TRUE
var/solidledge = 1
flags = ON_BORDER
layer = STAIRS_LAYER
@@ -17,23 +17,23 @@
name = "rock ledge"
desc = "An easily scaleable rocky ledge."
icon = 'icons/obj/ledges.dmi'
density = 1
density = TRUE
throwpass = 1
climbable = 1
anchored = 1
climbable = TRUE
anchored = TRUE
layer = STAIRS_LAYER
/obj/structure/ledge/ledge_nub
desc = "Part of a rocky ledge."
icon_state = "ledge-nub"
density = 0
density = FALSE
solidledge = 0
/obj/structure/ledge/ledge_stairs
name = "rock stairs"
desc = "A colorful set of rocky stairs"
icon_state = "ledge-stairs"
density = 0
density = FALSE
solidledge = 0
/obj/structure/ledge/CanPass(atom/movable/mover, turf/target)