This commit is contained in:
Daniel Odendahl Jr
2018-10-10 14:57:45 +00:00
parent b52f698498
commit af8a63576c
+1 -1
View File
@@ -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 {