Compare commits

..

No commits in common. "67cffae4318e32a1b48877b1fad621f325995b2e" and "6bf306dcc7cab5a155591253869bb8c00a31ad86" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@
<button style="border: transparent; border-radius: 100%; font-size: large; font-weight: bold; height: 50px; width: 50px"
onclick="addDice()">+
</button>
<!--<button style="font-size: large; font-weight: bold;" onclick="rollEasy('d2')">D2</button><-->
<button style="font-size: large; font-weight: bold;" onclick="rollEasy('d2')">D2</button>
<button style="font-size: large; font-weight: bold;" onclick="rollEasy('d4')">D4</button>
<button style="font-size: large; font-weight: bold;" onclick="rollEasy('d6')">D6</button>
<button style="font-size: large; font-weight: bold;" onclick="rollEasy('d8')">D8</button>

View File

@ -40,7 +40,7 @@
foreground: data.numberColor
}
}).then(() => {
diceBox.roll(data.roll.filter(it => it.split('@')[0].split('d')[1] !== "2").join('&'));
diceBox.roll(data.roll.join('&'));
})
})
</script>