add invite command

This commit is contained in:
Lee
2024-06-27 13:11:58 +01:00
parent 84dfe5a119
commit b50e30ffc5
2 changed files with 35 additions and 2 deletions

View File

@ -83,7 +83,8 @@ public class GuildService extends ListenerAdapter {
@Override
public final void onGuildJoin(GuildJoinEvent event) {
log.info("Joined guild \"{}\"", event.getGuild().getId());
getGuild(event.getGuild().getId()); // Ensure the guild is in the database
Guild guild = event.getGuild();
log.info("Joined guild \"{}\"", guild.getId());
getGuild(guild.getId()); // Ensure the guild is in the database
}
}