From d71df40b60f6cb8343acc430e333015ec1da6bb6 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Sat, 8 Nov 2025 22:16:51 +0100 Subject: [PATCH] Leader roll displays the large result display right away after rolling --- templates/ui/chat/groupRoll.hbs | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/templates/ui/chat/groupRoll.hbs b/templates/ui/chat/groupRoll.hbs index 11d08d2d..83cc4ce9 100644 --- a/templates/ui/chat/groupRoll.hbs +++ b/templates/ui/chat/groupRoll.hbs @@ -3,7 +3,7 @@

-
+
@@ -22,11 +22,9 @@
{{else}} -
+
{{#if (isNullish system.leader.manualSuccess)}}
- {{system.leader.result.total}} -
@@ -47,17 +45,23 @@
{{/unless}}
- {{#unless (isNullish system.leader.manualSuccess)}} + {{#if system.leader.result}}

{{localize "DAGGERHEART.UI.Chat.dualityRoll.abilityCheckTitle" ability=(localize (concat "DAGGERHEART.CONFIG.Traits." system.leader.trait ".name"))}}

- {{system.leader.result.total}}{{#unless (isNullish system.totalModifier)}} {{#if (gte system.totalModifier 0)}}+{{else}}-{{/if}} {{positive system.totalModifier}}{{/unless}} + + {{system.leader.result.total}} + {{#unless (isNullish system.totalModifier)}} + {{#if (gte system.totalModifier 0)}}+{{else}}-{{/if}} + {{positive system.totalModifier}} = {{add system.leader.result.total system.totalModifier}} + {{/unless}} + {{localize "DAGGERHEART.GENERAL.withThing" thing=system.leader.result.result.label}}
- {{/unless}} + {{/if}}