mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
This PR will lead us towards the Promised Day, for in its wake there shall be much celebration and ecstasy as this world becomes a world suitable for developer hegemony. The first strike is thusly; All << is converted into to_chat().
31 lines
811 B
Plaintext
31 lines
811 B
Plaintext
/obj/structure/table/rack
|
|
name = "rack"
|
|
desc = "Different from the Middle Ages version."
|
|
icon = 'icons/obj/objects.dmi'
|
|
icon_state = "rack"
|
|
can_plate = 0
|
|
can_reinforce = 0
|
|
flipped = -1
|
|
table_mat = DEFAULT_TABLE_MATERIAL
|
|
|
|
/obj/structure/table/rack/New()
|
|
..()
|
|
verbs -= /obj/structure/table/verb/do_flip
|
|
verbs -= /obj/structure/table/proc/do_put
|
|
|
|
/obj/structure/table/rack/remove_material(obj/item/weapon/wrench/W, mob/user)
|
|
src.dismantle(W, user)
|
|
|
|
/obj/structure/table/rack/update_connections()
|
|
return
|
|
|
|
/obj/structure/table/rack/update_desc()
|
|
return
|
|
|
|
/obj/structure/table/rack/update_icon()
|
|
return
|
|
|
|
/obj/structure/table/rack/holorack/dismantle(obj/item/weapon/wrench/W, mob/user)
|
|
to_chat(user, "<span class='warning'>You cannot dismantle \the [src].</span>")
|
|
return
|