From 643801e629c61b0eeac09d89133ed8ed06c69198 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 17 Jun 2025 23:02:20 -0600 Subject: [PATCH] Fix bug --- Axolotl-with-a-Gun/guns/glock/steady-aim.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/Axolotl-with-a-Gun/guns/glock/steady-aim.mjs b/Axolotl-with-a-Gun/guns/glock/steady-aim.mjs index ed6d256..db59ce5 100644 --- a/Axolotl-with-a-Gun/guns/glock/steady-aim.mjs +++ b/Axolotl-with-a-Gun/guns/glock/steady-aim.mjs @@ -45,6 +45,7 @@ async function rollDice() { let successes = 0; let critsOnly = 0; const results = []; + const resultValues = []; for (let i = diceCount; i > 0; i--) { let r = new Roll(`1d${sidesOnDice}`); await r.evaluate();