mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 18:51:53 +00:00
* Records Blackbox Feedback on Items used to Suicide * Update _logging.dm --------- Co-authored-by: san7890 <the@san7890.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
10 lines
385 B
Plaintext
10 lines
385 B
Plaintext
/// Logging for mech actions
|
|
/proc/log_mecha(text, list/data)
|
|
logger.Log(LOG_CATEGORY_MECHA, text, data)
|
|
|
|
/// Logging for equipment installed in a mecha
|
|
/obj/item/mecha_parts/mecha_equipment/log_message(message, message_type = LOG_MECHA, color = null, log_globally, list/data)
|
|
if(chassis)
|
|
return chassis.log_message("ATTACHMENT: [src] [message]", message_type, color)
|
|
return ..()
|