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

This commit is contained in:
CitadelStationBot
2017-07-10 16:13:16 -07:00
committed by kevinz000
parent 1b70c06474
commit ff6bbbedf5
522 changed files with 1924 additions and 1917 deletions
@@ -171,7 +171,7 @@ effective or pretty fucking useless.
var/mob/living/carbon/human/user = null
var/charge = 300
var/max_charge = 300
var/on = 0
var/on = FALSE
var/old_alpha = 0
actions_types = list(/datum/action/item_action/toggle)
@@ -194,14 +194,14 @@ effective or pretty fucking useless.
src.user = user
START_PROCESSING(SSobj, src)
old_alpha = user.alpha
on = 1
on = TRUE
/obj/item/device/shadowcloak/proc/Deactivate()
to_chat(user, "<span class='notice'>You deactivate [src].</span>")
STOP_PROCESSING(SSobj, src)
if(user)
user.alpha = old_alpha
on = 0
on = FALSE
user = null
/obj/item/device/shadowcloak/dropped(mob/user)