Fix leave message

This commit is contained in:
Ghoti 2020-07-16 20:12:13 -05:00
parent 7fbe35b83b
commit fcf45eb5be
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ public class LeaveListener extends ListenerAdapter {
} }
if(time > 0) { if(time > 0) {
biscuit.log(BColor.YELLOW + "USER LEFT: " + user.getName() + " " + user.getAsMention()); biscuit.log(BColor.YELLOW + "USER LEFT: " + user.getName() + " " + user.getAsMention());
biscuit.captchaLog("**User Left: ** ``" + user.getName() + "`` " + user.getAsMention() + "``"); biscuit.captchaLog("**User Left: ** ``" + user.getName() + "`` " + user.getAsMention());
} }
} }