mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-07-22 05:35:21 +01:00
20 lines
578 B
Plaintext
20 lines
578 B
Plaintext
/obj/machinery/pdapainter
|
|
circuit = /obj/item/circuitboard/machine/pdapainter
|
|
|
|
/obj/machinery/pdapainter/examine(mob/user)
|
|
. += ..()
|
|
. += "<span class='info'>Its maintenance panel is currently [panel_open ? "open" : "closed"].</span>"
|
|
|
|
/obj/machinery/pdapainter/screwdriver_act(mob/living/user, obj/item/W)
|
|
. = TRUE
|
|
if(..())
|
|
return
|
|
if(default_deconstruction_screwdriver(user, icon_state, icon_state, W))
|
|
return TRUE
|
|
return FALSE
|
|
|
|
/obj/machinery/pdapainter/crowbar_act(mob/living/user, obj/item/W)
|
|
. = ..()
|
|
if(default_deconstruction_crowbar(W, FALSE))
|
|
return TRUE
|