This commit is contained in:
Ghommie
2019-11-19 18:00:56 +01:00
parent a52e292cc8
commit dd101ef221
113 changed files with 519 additions and 552 deletions
@@ -36,15 +36,14 @@
var/strength = null
/obj/structure/particle_accelerator/examine(mob/user)
..()
. = ..()
switch(construction_state)
if(PA_CONSTRUCTION_UNSECURED)
to_chat(user, "Looks like it's not attached to the flooring.")
. += "Looks like it's not attached to the flooring."
if(PA_CONSTRUCTION_UNWIRED)
to_chat(user, "It is missing some cables.")
. += "It is missing some cables."
if(PA_CONSTRUCTION_PANEL_OPEN)
to_chat(user, "The panel is open.")
. += "The panel is open."
/obj/structure/particle_accelerator/Destroy()
construction_state = PA_CONSTRUCTION_UNSECURED
@@ -257,14 +257,14 @@
popup.open()
/obj/machinery/particle_accelerator/control_box/examine(mob/user)
..()
. = ..()
switch(construction_state)
if(PA_CONSTRUCTION_UNSECURED)
to_chat(user, "Looks like it's not attached to the flooring.")
. += "Looks like it's not attached to the flooring."
if(PA_CONSTRUCTION_UNWIRED)
to_chat(user, "It is missing some cables.")
. += "It is missing some cables."
if(PA_CONSTRUCTION_PANEL_OPEN)
to_chat(user, "The panel is open.")
. += "The panel is open."
/obj/machinery/particle_accelerator/control_box/attackby(obj/item/W, mob/user, params)