mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
46bea7cfa2
* Initialoize fixing * diff fix * add init grep test * fixed missed ones * . * some more * ,
22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
/obj/machinery/artifact_scanpad
|
|
name = "Anomaly Scanner Pad"
|
|
desc = "Place things here for scanning."
|
|
icon = 'icons/obj/stationobjs.dmi'
|
|
icon_state = "tele0"
|
|
anchored = TRUE
|
|
density = FALSE
|
|
circuit = /obj/item/circuitboard/artifact_scanpad
|
|
|
|
/obj/machinery/artifact_scanpad/attackby(var/obj/I as obj, var/mob/user as mob)
|
|
if(default_deconstruction_screwdriver(user, I))
|
|
return
|
|
if(default_deconstruction_crowbar(user, I))
|
|
return
|
|
if(default_part_replacement(user, I))
|
|
return
|
|
|
|
/obj/machinery/artifact_scanpad/Initialize(mapload)
|
|
. = ..()
|
|
default_apply_parts()
|
|
update_icon()
|