From a901dc4167e6efeb10a1d6e1cc0ea22ba0938c1c Mon Sep 17 00:00:00 2001 From: Jonas Karlsson Date: Sun, 8 Nov 2020 20:15:18 +0100 Subject: [PATCH] fix: Change 'other modifiers' to a text field to avoid invisible text. And, in this commit, wonder why it builds locally without this change? --- src/module/utils/TwodsixRolls.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/utils/TwodsixRolls.ts b/src/module/utils/TwodsixRolls.ts index 2b3a8dbf0..5c7bc9984 100644 --- a/src/module/utils/TwodsixRolls.ts +++ b/src/module/utils/TwodsixRolls.ts @@ -252,7 +252,7 @@ export class TwodsixRolls { roll.roll(); //Handle special results - const diceValues = roll.dice[0]['results']; + const diceValues:number[] = roll.dice[0]['results']; let effect:number; if (showEffect) { effect = roll.total;