SpinShare Referee Bot refbot.ellite.dev/overlay

don't check for in progress matches when re-starting

-5
-5
commands/utility/restart.js
··· 64 64 return; 65 65 } 66 66 67 - if (getMatchState()) { 68 - await interaction.reply({ content: '❌ A match is already in progress!', flags: MessageFlags.Ephemeral }); 69 - return; 70 - } 71 - 72 67 const matchId = interaction.options.getString('match'); 73 68 const oldMatch = await MatchModel.findOne({ _id: matchId, 'meta.eventId': event._id, status: 'completed' }); 74 69