Changes some 1s and 0s to TRUE and FALSE (#1967)
This commit is contained in:
committed by
kevinz000
parent
1b70c06474
commit
ff6bbbedf5
@@ -3,8 +3,8 @@
|
||||
icon = 'icons/obj/stock_parts.dmi'
|
||||
icon_state = "box_0"
|
||||
desc = "An angled mirror for reflecting lasers. This one does so at a 90 degree angle."
|
||||
anchored = 0
|
||||
density = 1
|
||||
anchored = FALSE
|
||||
density = TRUE
|
||||
layer = BELOW_OBJ_LAYER
|
||||
var/finished = 0
|
||||
var/admin = 0 //Can't be rotated or deconstructed
|
||||
@@ -62,7 +62,7 @@
|
||||
if (do_after(user,20*W.toolspeed, target = src))
|
||||
if(!src || !WT.isOn())
|
||||
return
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
to_chat(user, "<span class='notice'>You weld \the [src] to the floor.</span>")
|
||||
if(1)
|
||||
if (WT.remove_fuel(0,user))
|
||||
@@ -154,7 +154,7 @@
|
||||
|
||||
/obj/structure/reflector/single/mapping
|
||||
admin = 1
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
|
||||
//DOUBLE
|
||||
|
||||
@@ -177,7 +177,7 @@
|
||||
|
||||
/obj/structure/reflector/double/mapping
|
||||
admin = 1
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
|
||||
//BOX
|
||||
|
||||
@@ -201,7 +201,7 @@
|
||||
|
||||
/obj/structure/reflector/box/mapping
|
||||
admin = 1
|
||||
anchored = 1
|
||||
anchored = TRUE
|
||||
|
||||
/obj/structure/reflector/ex_act()
|
||||
if(admin)
|
||||
|
||||
Reference in New Issue
Block a user