Added more logging options new command to create an invite

This commit is contained in:
2020-07-11 13:06:41 -05:00
parent 2fd5f8efe9
commit ac5f3672fd
11 changed files with 195 additions and 6 deletions

View File

@@ -93,7 +93,8 @@ public class PreUser {
timeLeft = timeLeft - 1;
if(timeLeft <= 0) {
for(Guild g : getGuilds()) {
Main.log.info(user.getName() + " " + user.getAsMention() + " waited too long to complete the captcha! Kicking...");
Main.log.info(user.getName() + " " + user.getAsMention() + " waited too long to complete the captcha. Kicking...");
Main.getBiscuit().captchaLog("``" + user.getName() +"`` " + user.getAsMention() + " waited too long to complete the captcha! Kicking...");
g.kick(user.getId()).queue();
remove();
}