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]) : ' '
             );