forked from git-mirrors/GeyserConnect
Disable saved logins to prevent issues
This commit is contained in:
parent
3cadfe5306
commit
bcf635d3bb
1 changed files with 6 additions and 0 deletions
|
@ -59,6 +59,12 @@ public class GeyserConnect implements Extension {
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void onSessionInitialize(SessionInitializeEvent event) {
|
public void onSessionInitialize(SessionInitializeEvent event) {
|
||||||
GeyserSession session = (GeyserSession) event.connection();
|
GeyserSession session = (GeyserSession) event.connection();
|
||||||
|
|
||||||
|
// Remove all saved logins to prevent issues connecting
|
||||||
|
// Maybe worth adding support for this later
|
||||||
|
session.getGeyser().getConfig().getSavedUserLogins().clear();
|
||||||
|
|
||||||
|
// Change the packet handler to our own
|
||||||
BedrockPacketHandler packetHandler = session.getUpstream().getSession().getPacketHandler();
|
BedrockPacketHandler packetHandler = session.getUpstream().getSession().getPacketHandler();
|
||||||
session.getUpstream().getSession().setPacketHandler(new PacketHandler(this, session, packetHandler));
|
session.getUpstream().getSession().setPacketHandler(new PacketHandler(this, session, packetHandler));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue