
Steps taken: Create new legacy game "Test A" with custom character sheet. Give it an extremely rudimentary character sheet - just a button that does a Basic Attack roll with some CSS. Click button to do a basic attack. Check chat archive. Update game to Jumpgate. Click button to do a basic attack. Check chat archive. In in-game chat window: In chat archive: Rolls were also missing in the chat archive of the legacy backup game. Rolls were also missing in the chat archive of a legacy game that wasn't updated to Jumpgate. Seems universal. HTML: <script type="text/worker"> function rollBasicAttack() { let command = `&{template:ascent} {{rollname=Basic Attack}} {{attack=[[1d20]]}}`; startRoll(command, function(result) { finishRoll(result.rollId); }); } on("clicked:basicattack", function() { rollBasicAttack(); }); </script> <div class="container"> <div> <button type='action' name='act_basicattack'>Attack</button> </div> </div> <rolltemplate class="sheet-rolltemplate-ascent"> <div class="container"> <div class="header"> <span class="major-label">{{rollname}}</span> </div> <div class="section"> <span class="label">Attack: </span> {{attack}} {{attackadvantage}} </div> </div> </rolltemplate> CSS: .container { min-width: 840px; padding: 0px; } .basic-attack { border: 2px solid #916C4A; padding: 4px; margin-bottom: 5px; display: grid; width: auto; grid-template-columns: min-content min-content; grid-template-rows: repeat(3, 1fr); align-items: center; grid-column-gap: 2px; white-space: nowrap; } .sheet-rolltemplate-ascent .sheet-container { background: #DCC8AF; border: 2px solid #916C4A; } .sheet-rolltemplate-ascent .sheet-header { background: #CEB18E; border-bottom: 1px solid #916C4A; padding: 5px; } .sheet-rolltemplate-ascent .sheet-section { height: 18px; margin: 3px; padding: 5px; } .sheet-rolltemplate-ascent .sheet-label { font-weight: bold; } .sheet-rolltemplate-ascent .sheet-major-label { font-weight: bold; font-size: large; font-style: italic; } Issue seems to be occurring in all my games with custom sheets, which is every game I'm running. Link to join game here , no scripts attached and confirmed in both chrome and firefox.