From 2ad2d88fa3d1acbaf05372161a15fdef61352064 Mon Sep 17 00:00:00 2001 From: Glazelf <35176230+Glazelf@users.noreply.github.com> Date: Wed, 5 Jun 2024 21:40:02 +0200 Subject: [PATCH] Lock /shinx shiny for now Only event trophy check --- commands/virtual_simulation/shinx.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/virtual_simulation/shinx.js b/commands/virtual_simulation/shinx.js index c26b84d5..a4fc9c36 100644 --- a/commands/virtual_simulation/shinx.js +++ b/commands/virtual_simulation/shinx.js @@ -245,7 +245,9 @@ export default async (client, interaction, ephemeral) => { }); break; case "shiny": - res = await hasEventTrophy(master.id, 'Shiny Charm'); + // This command is currently broken due to missing checks to see if user has Shiny Charm and possibly broken level-up rewards + let res = null; + // res = await hasEventTrophy(master.id, 'Shiny Charm'); if (res) { const is_shiny = await switchShininessAndGet(master.id); returnString = is_shiny ? `Your Shinx is shiny now` : `Your Shinx is no longer shiny`;