mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Convert some bools to TRUE/FALSE instead of 1/0.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user