overte-Armored-Dragon/scripts/system/domainChat/ui.js
armored-dragon eedabfa305
Listen for messages and display using notifcore.
Avatar joining and leaving.
2025-02-25 01:08:34 -06:00

15 lines
No EOL
321 B
JavaScript

const ui = {
displayNotificationCore: (messagePacket) => {
Messages.sendLocalMessage(
"Floof-Notif",
JSON.stringify({
sender: messagePacket.author,
text: messagePacket.message,
})
);
},
displayChatMessage: (messagePacket) => {
// TODO
console.log("displaychatMessage is not implemented");
}
}