From d52bd324614526edcb20f25b264a96f9f4b551cc Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Thu, 8 Dec 2022 10:53:07 -0800 Subject: [PATCH] changed action icon --- CHANGELOG.md | 4 ++++ chat/message_view.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c1aee9..7a568b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.19.3 +* Fixed asexual orientation ID +* Replaced the action star icon to differentiate with the mod badges + ## 1.19.2 * Fixed a bug that could lead to ad-flooding if the client experiences frequent connection drops diff --git a/chat/message_view.ts b/chat/message_view.ts index 12c17b3..c60292c 100644 --- a/chat/message_view.ts +++ b/chat/message_view.ts @@ -37,7 +37,7 @@ const userPostfix: {[key: number]: string | undefined} = { ` ${this.filterClasses}`; if(message.type !== Conversation.Message.Type.Event) { children.push( - (message.type === Conversation.Message.Type.Action) ? createElement('i', { class: 'message-pre fas fa-star' }) : '', + (message.type === Conversation.Message.Type.Action) ? createElement('i', { class: 'message-pre fa-solid fa-star-of-life' }) : '', createElement(UserView, {props: {character: message.sender, channel: this.channel}}), userPostfix[message.type] !== undefined ? createElement('span', { class: 'message-post' }, userPostfix[message.type]) : ' ' );