mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 06:26:13 +01:00
* Fixed so that the description message always comes first with the action workflow
* Changed to instead render the description in the roll message
* Made the action config title not get changed in d20rolldialog if it's not a trait roll
* Initial chat message description design change
* Revert "Initial chat message description design change"
This reverts commit f4f5fd6c24.
* .
12 lines
No EOL
764 B
Handlebars
12 lines
No EOL
764 B
Handlebars
<div class="chat-roll">
|
|
<div class="roll-part-title"><span>{{title}}</span></div>
|
|
{{#if actionDescription}}{{> 'systems/daggerheart/templates/ui/chat/parts/description-part.hbs'}}{{/if}}
|
|
{{#if hasRoll}}
|
|
<div class="roll-part-header"><span>{{localize "Result"}}</span></div>
|
|
{{> 'systems/daggerheart/templates/ui/chat/parts/roll-part.hbs'}}
|
|
{{/if}}
|
|
{{#if (or hasDamage hasHealing)}}{{> 'systems/daggerheart/templates/ui/chat/parts/damage-part.hbs'}}{{/if}}
|
|
{{#if hasTarget}}{{> 'systems/daggerheart/templates/ui/chat/parts/target-part.hbs'}}{{/if}}
|
|
<div class="roll-part-header"><div></div></div>
|
|
</div>
|
|
{{#if (or parent.isAuthor canButtonApply)}}{{> 'systems/daggerheart/templates/ui/chat/parts/button-part.hbs'}}{{/if}} |