fix InterruptedException

This commit is contained in:
brenoepic 2022-04-29 20:34:10 -03:00
parent 9064dc1fee
commit a4e175f656

View File

@ -157,8 +157,9 @@ public class MoveAvatarEvent extends MessageHandler {
}
}
}
} catch (Exception e) {
} catch (InterruptedException e) {
LOGGER.error("Caught exception", e);
Thread.currentThread().interrupt();
}
}
}