mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-17 02:27:12 +01:00
22 lines
503 B
Plaintext
22 lines
503 B
Plaintext
// Mostly for debugging table connections
|
|
// This file is not #included in the .dme.
|
|
|
|
/datum/prototype/material/debug
|
|
name = "debugium"
|
|
id = "debug"
|
|
|
|
stack_type = /obj/item/stack/material/debug
|
|
icon_base = "debug"
|
|
icon_reinf = "rdebug"
|
|
icon_colour = "#FFFFFF"
|
|
|
|
/obj/item/stack/material/debug
|
|
name = "debugium"
|
|
icon = 'icons/obj/tables.dmi'
|
|
icon_state = "debugium"
|
|
default_type = "debugium"
|
|
|
|
/obj/structure/table/debug/Initialize(mapload)
|
|
. = ..()
|
|
material = get_material_by_name("debugium")
|