Fix runtime in message content serialization

This commit is contained in:
Dominion
2023-03-28 03:01:41 -04:00
parent d4f6245b30
commit b02f2e0c6a
+1 -1
View File
@@ -1,5 +1,5 @@
/datum/tgs_message_content/proc/_interop_serialize()
return list("text" = text, "embed" = embed._interop_serialize())
return list("text" = text, "embed" = embed?._interop_serialize())
/datum/tgs_chat_embed/proc/_interop_serialize()
CRASH("Base /proc/interop_serialize called on [type]!")