
I'm playing with a custom character sheet (a personal version of the Valor sheet that has a bunch of API-integrated extra bells and whistles), and I've noticed a peculiar issue. When playing the template for attack rolls displays just fine, but when looking back at the chat archive, the attack rolls are just missing. I opened the JS console to investigate, and when loading the logs, I see a few hundred instances of "Didn't find a roll template called 'valor'." The game's character sheet is set to Custom, and this is at the bottom of the HTML document: <rolltemplate class="sheet-rolltemplate-valor">
<div class="outer">
<div class="header">
{{name}}
</div>
{{#roll}}
<br />
<div class="roll">
{{roll}}
</div>
{{/roll}}
{{#summary}}
<div>
{{summary}}
</div>
{{/summary}}
</div>
</rolltemplate> Any idea why this would be failing to load specifically on the chat archive screen?