mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 06:58:30 +01:00
Convert some bools to TRUE/FALSE instead of 1/0. (#11100)
Co-authored-by: Aronai Sieyes <arokha@arokha.com>
This commit is contained in:
co-authored by
Aronai Sieyes
parent
9ce7af6ca1
commit
577b986ba6
@@ -86,8 +86,8 @@
|
||||
/obj/effect/dummy/chameleon
|
||||
name = ""
|
||||
desc = ""
|
||||
density = 0
|
||||
anchored = 1
|
||||
density = FALSE
|
||||
anchored = TRUE
|
||||
var/can_move = 1
|
||||
var/obj/item/device/chameleon/master = null
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
icon = 'icons/obj/device.dmi'
|
||||
icon_state = "geiger_wall"
|
||||
item_state = "geiger_wall"
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
scanning = 1
|
||||
radiation_count = 0
|
||||
plane = TURF_PLANE
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
to_chat(user, "No exposed cable here to attach to.")
|
||||
return
|
||||
else
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
mode = 1
|
||||
src.visible_message("<span class='notice'>[user] attaches [src] to the cable!</span>")
|
||||
playsound(src, I.usesound, 50, 1)
|
||||
@@ -50,7 +50,7 @@
|
||||
if (mode == 2)
|
||||
STOP_PROCESSING(SSobj, src) // Now the power sink actually stops draining the station's power if you unhook it. --NeoFite
|
||||
STOP_PROCESSING_POWER_OBJECT(src)
|
||||
anchored = 0
|
||||
anchored = FALSE
|
||||
mode = 0
|
||||
src.visible_message("<span class='notice'>[user] detaches [src] from the cable!</span>")
|
||||
set_light(0)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
icon = 'icons/obj/radio_vr.dmi' //VOREStation Edit - New Icon
|
||||
icon_state = "intercom"
|
||||
layer = ABOVE_WINDOW_LAYER
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
w_class = ITEMSIZE_LARGE
|
||||
canhear_range = 7 //VOREStation Edit
|
||||
flags = NOBLOODY
|
||||
|
||||
@@ -397,7 +397,7 @@ not carry this around."}, "OOC Warning", list("Take It","Leave It"))
|
||||
icon = 'icons/obj/radio_vr.dmi'
|
||||
icon_state = "floor_beacon"
|
||||
w_class = ITEMSIZE_HUGE
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
|
||||
GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beacon/stationary)
|
||||
|
||||
@@ -462,7 +462,7 @@ GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beac
|
||||
icon_state = "frontiertrans"
|
||||
beacons_left = 1 //Just one
|
||||
battery_lock = 1
|
||||
unacidable = 1
|
||||
unacidable = TRUE
|
||||
failure_chance = 0 //Percent
|
||||
|
||||
var/phase_power = 75
|
||||
|
||||
Reference in New Issue
Block a user