9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-25 18:09:27 +00:00

refactor(bukkit): 移除 ClientboundLoginFinishedPacket 处理中的调试输出

This commit is contained in:
jhqwqmc
2025-07-08 17:45:34 +08:00
parent cc640883b0
commit 4a5501a1d4

View File

@@ -2439,7 +2439,6 @@ public class PacketConsumers {
GameProfile gameProfile = FastNMS.INSTANCE.field$ClientboundLoginFinishedPacket$gameProfile(packet);
user.setName(gameProfile.getName());
user.setUUID(gameProfile.getId());
System.out.println("Login finished: " + user.name() + " " + user.uuid());
} catch (Exception e) {
CraftEngine.instance().logger().warn("Failed to handle ClientboundLoginFinishedPacket", e);
}