From 866646d7eedbdadcb078de205eba2f4ce14037ae Mon Sep 17 00:00:00 2001 From: Linda Naughton Date: Tue, 1 Jun 2021 01:10:54 -0400 Subject: [PATCH] Reset dice after rolling. --- webportal/components/rpg-live-scene.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webportal/components/rpg-live-scene.js b/webportal/components/rpg-live-scene.js index 3e88b23..53e77c9 100644 --- a/webportal/components/rpg-live-scene.js +++ b/webportal/components/rpg-live-scene.js @@ -14,7 +14,7 @@ export default Component.extend({ rollDice() { let api = this.gameApi; let dice = this.diceString; - this.set('showRollDice', null); + this.set('showRollDice', false); this.set('diceString', ''); if (!dice) { @@ -30,4 +30,4 @@ export default Component.extend({ }); } } -}); \ No newline at end of file +});