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

This commit is contained in:
CitadelStationBot
2017-07-10 18:13:16 -05:00
committed by kevinz000
parent 1b70c06474
commit ff6bbbedf5
522 changed files with 1924 additions and 1917 deletions
+5 -5
View File
@@ -4,8 +4,8 @@
icon = 'icons/obj/singularity.dmi'
icon_state = "emitter"
var/icon_state_on = "emitter_+a"
anchored = 0
density = 1
anchored = FALSE
density = TRUE
req_access = list(GLOB.access_engine_equip)
// The following 3 vars are mostly for the prototype
@@ -25,7 +25,7 @@
var/last_shot = 0
var/shot_number = 0
var/state = 0
var/locked = 0
var/locked = FALSE
var/projectile_type = /obj/item/projectile/beam/emitter
@@ -343,8 +343,8 @@
/obj/machinery/power/emitter/emag_act(mob/user)
if(!emagged)
locked = 0
emagged = 1
locked = FALSE
emagged = TRUE
if(user)
user.visible_message("[user.name] emags the [src.name].","<span class='notice'>You short out the lock.</span>")