Changes some 1s and 0s to TRUE and FALSE (#29144)

This commit is contained in:
ShizCalev
2017-07-10 10:31:34 -04:00
committed by Jordan Brown
parent 8776c15703
commit 59ef81245b
521 changed files with 1915 additions and 1918 deletions

View File

@@ -61,10 +61,10 @@ GLOBAL_LIST_INIT(admin_verbs_debug_mapping, list(
set category = "Mapping"
set name = "Camera Range Display"
var/on = 0
var/on = FALSE
for(var/turf/T in world)
if(T.maptext)
on = 1
on = TRUE
T.maptext = null
if(!on)
@@ -122,11 +122,8 @@ GLOBAL_LIST_INIT(admin_verbs_debug_mapping, list(
set category = "Mapping"
set name = "Intercom Range Display"
var/static/intercom_range_display_status = 0
if(intercom_range_display_status)
intercom_range_display_status = 0
else
intercom_range_display_status = 1
var/static/intercom_range_display_status = FALSE
intercom_range_display_status = !intercom_range_display_status //blame cyberboss if this breaks something
for(var/obj/effect/debugging/marker/M in world)
qdel(M)