diff options
author | Petr Ilin <hevav@hevav.dev> | 2022-04-02 22:58:07 +0300 |
---|---|---|
committer | Petr Ilin <hevav@hevav.dev> | 2022-04-02 22:58:07 +0300 |
commit | 844f5cc6115858c523c69667855632764a5dd50d (patch) | |
tree | 871e243d4fa8084c140ac0eb56e5349c463e15b4 /src/main/java/net/elytrium/limboauth | |
parent | 4b5857eccf18641fba5e679c1133785ec93e5669 (diff) | |
download | LimboAuth-844f5cc6115858c523c69667855632764a5dd50d.tar.gz LimboAuth-844f5cc6115858c523c69667855632764a5dd50d.tar.bz2 LimboAuth-844f5cc6115858c523c69667855632764a5dd50d.zip |
GameProfileRequestEvent 'early' order
Diffstat (limited to 'src/main/java/net/elytrium/limboauth')
-rw-r--r-- | src/main/java/net/elytrium/limboauth/listener/AuthListener.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/net/elytrium/limboauth/listener/AuthListener.java b/src/main/java/net/elytrium/limboauth/listener/AuthListener.java index 9ff6b6f..dcca4cc 100644 --- a/src/main/java/net/elytrium/limboauth/listener/AuthListener.java +++ b/src/main/java/net/elytrium/limboauth/listener/AuthListener.java @@ -19,6 +19,7 @@ package net.elytrium.limboauth.listener; import com.j256.ormlite.dao.Dao; import com.j256.ormlite.stmt.UpdateBuilder; +import com.velocitypowered.api.event.PostOrder; import com.velocitypowered.api.event.Subscribe; import com.velocitypowered.api.event.connection.PostLoginEvent; import com.velocitypowered.api.event.connection.PreLoginEvent; @@ -79,7 +80,7 @@ public class AuthListener { } } - @Subscribe + @Subscribe(order = PostOrder.FIRST) public void onGameProfileRequest(GameProfileRequestEvent event) { if (Settings.IMP.MAIN.SAVE_UUID && (this.floodgateApi == null || !this.floodgateApi.isFloodgatePlayer(event.getOriginalProfile().getId()))) { RegisteredPlayer registeredPlayer = AuthSessionHandler.fetchInfo(this.playerDao, event.getOriginalProfile().getId()); |