v3.1.0 #317

Merged
Vylpes merged 76 commits from develop into main 2023-07-08 13:30:22 +01:00
2 changed files with 11 additions and 2 deletions
Showing only changes of commit b4cec6778d - Show all commits

View file

@ -7,7 +7,7 @@
# any secret values.
BOT_TOKEN=
BOT_VER=3.0.1
BOT_VER=3.0.2
BOT_AUTHOR=Vylpes
BOT_DATE=24 Apr 2022
BOT_DATE=09 May 2022
BOT_OWNERID=147392775707426816

View file

@ -116,6 +116,15 @@ export default class Lobby extends Command {
return;
}
const lobby = await eLobby.FetchOneByChannelId(channel.id);
if (lobby) {
const errorEmbed = new ErrorEmbed(context, "This channel has already been setup.");
errorEmbed.SendToCurrentChannel();
return;
}
const entity = new eLobby(channel.id, role.id, cooldown, gameName);
await entity.Save(eLobby, entity);