mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-09-09 05:40:47 +02:00
Catch RejectedExecutionException in BufferedRequest (#2289)
This commit is contained in:
@@ -63,6 +63,10 @@ public class BukkitCommandListUpdater {
|
||||
|
||||
// Called when a user's data is recalculated.
|
||||
public void onUserDataRecalculate(UserDataRecalculateEvent e) {
|
||||
if (this.plugin.getBootstrap().isServerStopping()) {
|
||||
return;
|
||||
}
|
||||
|
||||
UUID uniqueId = e.getUser().getUniqueId();
|
||||
if (!this.plugin.getBootstrap().isPlayerOnline(uniqueId)) {
|
||||
return;
|
||||
|
Reference in New Issue
Block a user