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
@@ -8,7 +8,7 @@
var/obj/item/weapon/tank/tank_two
var/obj/item/device/attached_device
var/mob/attacher = null
var/valve_open = 0
var/valve_open = FALSE
var/toggle = 1
origin_tech = "materials=1;engineering=1"
@@ -79,7 +79,7 @@
if (src.loc == usr)
if(tank_one && href_list["tankone"])
split_gases()
valve_open = 0
valve_open = FALSE
tank_one.loc = get_turf(src)
tank_one = null
update_icon()
@@ -87,7 +87,7 @@
w_class = WEIGHT_CLASS_NORMAL
else if(tank_two && href_list["tanktwo"])
split_gases()
valve_open = 0
valve_open = FALSE
tank_two.loc = get_turf(src)
tank_two = null
update_icon()
@@ -156,7 +156,7 @@
/obj/item/device/transfer_valve/proc/toggle_valve()
if(!valve_open && tank_one && tank_two)
valve_open = 1
valve_open = TRUE
var/turf/bombturf = get_turf(src)
var/area/A = get_area(bombturf)
@@ -202,7 +202,7 @@
else if(valve_open && tank_one && tank_two)
split_gases()
valve_open = 0
valve_open = FALSE
src.update_icon()
// this doesn't do anything but the timer etc. expects it to be here