diff --git a/commands/games/battle.js b/commands/games/battle.js index 28ec7586..5c7cb487 100644 --- a/commands/games/battle.js +++ b/commands/games/battle.js @@ -49,7 +49,7 @@ module.exports = class BattleCommand extends Command { battle.attacker.changeGuard(); battle.reset(false); } else if (choice === 'special') { - const miss = Math.floor(Math.random() * 4); + const miss = Math.floor(Math.random() * 3); if (miss) { await msg.say(`${battle.attacker}'s special attack missed!`); } else {