diff --git a/Axolotl-with-a-Gun/guns/AK-47/base.mjs b/Axolotl-with-a-Gun/guns/AK-47/base.mjs index aedbc03..cf29f78 100644 --- a/Axolotl-with-a-Gun/guns/AK-47/base.mjs +++ b/Axolotl-with-a-Gun/guns/AK-47/base.mjs @@ -81,7 +81,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your hobby stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs b/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs index 0c4cb84..6d9cf49 100644 --- a/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs +++ b/Axolotl-with-a-Gun/guns/glock/2-not-1.mjs @@ -76,7 +76,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your gun stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/glock/base.mjs b/Axolotl-with-a-Gun/guns/glock/base.mjs index b9675ac..3ec6301 100644 --- a/Axolotl-with-a-Gun/guns/glock/base.mjs +++ b/Axolotl-with-a-Gun/guns/glock/base.mjs @@ -75,7 +75,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your gun stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/gunsword/base.mjs b/Axolotl-with-a-Gun/guns/gunsword/base.mjs index 9ec5c4e..f1b7f77 100644 --- a/Axolotl-with-a-Gun/guns/gunsword/base.mjs +++ b/Axolotl-with-a-Gun/guns/gunsword/base.mjs @@ -85,7 +85,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your gun stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/gunsword/only-empty-half.mjs b/Axolotl-with-a-Gun/guns/gunsword/only-empty-half.mjs index 6bf13e2..73b9c7c 100644 --- a/Axolotl-with-a-Gun/guns/gunsword/only-empty-half.mjs +++ b/Axolotl-with-a-Gun/guns/gunsword/only-empty-half.mjs @@ -47,8 +47,8 @@ async function rollDice() { const { statBase, extraDice } = answers; let rollMode = game.settings.get(`core`, `rollMode`); - let diceCount = statBase; - diceCount += extraDice; + let diceCount = statBase ?? 1; + diceCount += extraDice ?? 0; let successes = 0; let critsOnly = 0; @@ -85,7 +85,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your gun stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs b/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs index 2e02ac8..ec38fb3 100644 --- a/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs +++ b/Axolotl-with-a-Gun/guns/hand-cannon/base.mjs @@ -75,7 +75,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your gun stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/mini-gun/base.mjs b/Axolotl-with-a-Gun/guns/mini-gun/base.mjs index 3354d48..702f42e 100644 --- a/Axolotl-with-a-Gun/guns/mini-gun/base.mjs +++ b/Axolotl-with-a-Gun/guns/mini-gun/base.mjs @@ -139,7 +139,7 @@ async function main() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your gun stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) { diff --git a/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs b/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs index 74bdff3..4e08bbb 100644 --- a/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs +++ b/Axolotl-with-a-Gun/guns/rocket-launcher/base.mjs @@ -68,7 +68,7 @@ async function rollDice() { let successType = `Normal`; if (successes >= 8) { - content += `
POP OFF
Add one to your hobby stat and gain 1 additional Momentum!`; + content += `
POP OFF
Add one to your Axolotl stat and gain 1 additional Momentum!`; successType = `Popped Off`; } else if (successes === 0) {