diff --git a/commands/games-sp/hunger-games.js b/commands/games-sp/hunger-games.js index 0d6ec5ef..7d4cd6d3 100644 --- a/commands/games-sp/hunger-games.js +++ b/commands/games-sp/hunger-games.js @@ -123,7 +123,7 @@ module.exports = class HungerGamesCommand extends Command { const valid = eventsArr.filter(event => { if (event.type !== type) return false; if (event.type === 'kill' && tribute.weapon && !event.requires) { - const useWeapon = Math.floor(Math.random() * 2); + const useWeapon = Math.floor(Math.random() * 3); if (useWeapon) return false; } if (event.requires && event.requires !== 'food' && event.requires !== tribute.weapon) return false;