mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 17:51:17 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
11 lines
352 B
Plaintext
11 lines
352 B
Plaintext
/obj/item/mounted/frame/intercom
|
|
name = "Intercom Frame"
|
|
desc = "Used for building intercoms"
|
|
icon = 'icons/obj/monitors.dmi'
|
|
icon_state = "intercom-frame"
|
|
mount_reqs = list("simfloor", "nospace")
|
|
|
|
/obj/item/mounted/frame/intercom/do_build(turf/on_wall, mob/user)
|
|
new /obj/item/radio/intercom(get_turf(src), get_dir(user, on_wall), 0)
|
|
qdel(src)
|