From 8539b7e844b76697b2a6e18f844e24e65aac01b6 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 6 May 2024 14:25:36 -0400 Subject: [PATCH] Fix --- commands/games-sp/hunger-games.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;