mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-11 07:04:01 +01:00
4760085246
* Fixes compile warning * SANE ARGS * return YES NO * Better
18 lines
905 B
Plaintext
18 lines
905 B
Plaintext
/obj/item/pai_cable/proc/plugin(obj/machinery/M, mob/user)
|
|
if(istype(M, /obj/machinery/door) || istype(M, /obj/machinery/camera))
|
|
if(istype(M, /obj/machinery/door/airlock))
|
|
var/obj/machinery/door/airlock/A = M
|
|
if(A.secured_wires)
|
|
to_chat(user,span_warning("\The [M] doesn't have any acessible data ports for \the [src]!"))
|
|
return
|
|
user.visible_message("[user] inserts [src] into a data port on [M].", "You insert [src] into a data port on [M].", "You hear the satisfying click of a wire jack fastening into place.")
|
|
playsound(src, 'sound/machines/click.ogg', 50, 1)
|
|
user.drop_item()
|
|
src.forceMove(M)
|
|
src.machine = M
|
|
else
|
|
user.visible_message("[user] fumbles to find a place on [M] to plug in [src].", "There aren't any ports on [M] that match the jack belonging to [src].")
|
|
|
|
/obj/item/pai_cable/attack(mob/living/M, mob/living/user, target_zone, attack_modifier)
|
|
return NONE
|