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

@@ -15,8 +15,8 @@
/obj/structure/diona
icon = 'icons/obj/diona.dmi'
anchored = 1
density = 1
anchored = TRUE
density = TRUE
opacity = 0
layer = TURF_LAYER + 0.01

View File

@@ -3,8 +3,8 @@
desc = "A drop pod door. Opens rapidly using explosive bolts."
icon = 'icons/obj/structures.dmi'
icon_state = "droppod_door_closed"
anchored = 1
density = 1
anchored = TRUE
density = TRUE
opacity = 1
layer = TURF_LAYER + 0.1
var/deploying
@@ -68,7 +68,7 @@
M.throw_at(get_edge_target_turf(origin,src.dir),rand(0,3),50)
// Create a decorative ramp bottom and flatten out our current ramp.
density = 0
density = FALSE
set_opacity(0)
icon_state = "ramptop"
var/obj/structure/droppod_door/door_bottom = new(T)