Skip to content

Commit

Permalink
Lock /shinx shiny for now
Browse files Browse the repository at this point in the history
Only event trophy check
  • Loading branch information
Glazelf committed Jun 5, 2024
1 parent 3a88996 commit 2ad2d88
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion commands/virtual_simulation/shinx.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
Expand Down

0 comments on commit 2ad2d88

Please sign in to comment.