From 205ad19f183690bd5d4ce5ac4e520764362a9bf5 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Wed, 1 Jul 2026 15:13:24 +0200 Subject: [PATCH] Changed so that chat messages never show the actor name, instead using alias --- templates/ui/chat/chat-message.hbs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/templates/ui/chat/chat-message.hbs b/templates/ui/chat/chat-message.hbs index 8a334b60..87ecce39 100644 --- a/templates/ui/chat/chat-message.hbs +++ b/templates/ui/chat/chat-message.hbs @@ -6,18 +6,13 @@
{{#if message.title}}

{{message.title}}

-
{{actor.name}} {{#if author.isGM}}(GM){{/if}}
+
{{alias}} {{#if author.isGM}}(GM){{/if}}
{{else}} {{#unless actor.name}}

{{author.name}}

{{else}} - {{#if (eq message.type 'base')}} -

{{actor.name}}

-
{{author.name}}
- {{else}} -

{{alias}}

-
{{actor.name}} {{#if author.isGM}}(GM){{/if}}
- {{/if}} +

{{alias}}

+
{{author.name}}
{{/unless}} {{/if}}