Changes some 1s and 0s to TRUE and FALSE (#1967)
This commit is contained in:
committed by
kevinz000
parent
1b70c06474
commit
ff6bbbedf5
@@ -152,7 +152,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
/obj/machinery/computer/rdconsole/emag_act(mob/user)
|
||||
if(!emagged)
|
||||
playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1)
|
||||
emagged = 1
|
||||
emagged = TRUE
|
||||
to_chat(user, "<span class='notice'>You disable the security protocols</span>")
|
||||
|
||||
/obj/machinery/computer/rdconsole/Topic(href, href_list)
|
||||
@@ -295,13 +295,13 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
if(!cancontinue)
|
||||
var/choice = input("This item does not raise tech levels. Proceed destroying loaded item anyway?") in list("Proceed", "Cancel")
|
||||
if(choice == "Cancel" || !linked_destroy || !linked_destroy.loaded_item) return
|
||||
linked_destroy.busy = 1
|
||||
linked_destroy.busy = TRUE
|
||||
screen = 0.1
|
||||
updateUsrDialog()
|
||||
flick("d_analyzer_process", linked_destroy)
|
||||
spawn(24)
|
||||
if(linked_destroy)
|
||||
linked_destroy.busy = 0
|
||||
linked_destroy.busy = FALSE
|
||||
if(!linked_destroy.loaded_item)
|
||||
screen = 1.0
|
||||
return
|
||||
@@ -412,7 +412,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
|
||||
var/g2g = 1
|
||||
var/enough_materials = 1
|
||||
linked_lathe.busy = 1
|
||||
linked_lathe.busy = TRUE
|
||||
flick("protolathe_n",linked_lathe)
|
||||
use_power(power)
|
||||
|
||||
@@ -455,7 +455,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
SSblackbox.add_details("item_printed","[new_item.type]|[amount]")
|
||||
already_logged = 1
|
||||
screen = old_screen
|
||||
linked_lathe.busy = 0
|
||||
linked_lathe.busy = FALSE
|
||||
else
|
||||
say("Protolathe connection failed. Production halted.")
|
||||
screen = 1.0
|
||||
@@ -488,7 +488,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
|
||||
var/g2g = 1
|
||||
var/enough_materials = 1
|
||||
linked_imprinter.busy = 1
|
||||
linked_imprinter.busy = TRUE
|
||||
flick("circuit_imprinter_ani", linked_imprinter)
|
||||
use_power(power)
|
||||
|
||||
@@ -521,7 +521,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
new_item.materials = efficient_mats.Copy()
|
||||
SSblackbox.add_details("circuit_printed","[new_item.type]")
|
||||
screen = old_screen
|
||||
linked_imprinter.busy = 0
|
||||
linked_imprinter.busy = FALSE
|
||||
else
|
||||
say("Circuit Imprinter connection failed. Production halted.")
|
||||
screen = 1.0
|
||||
|
||||
Reference in New Issue
Block a user