You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 18, 2025. It is now read-only.
Many modpacks using this mod, and it causes LAN servers failed to be connected.
Looks like caused by following codes:
SimpleLogin/src/main/java/top/seraphjack/simplelogin/client/ClientLoader.java
Lines 17 to 21 in afdda60
It might be unnecessary for client sending password at the very beginning,
since server sends a request login message while logging in:
SimpleLogin/src/main/java/top/seraphjack/simplelogin/server/ServerSideEventHandler.java
Line 30 in afdda60
And the client seems handles it correctly:
SimpleLogin/src/main/java/top/seraphjack/simplelogin/network/MessageRequestLogin.java
Lines 23 to 28 in afdda60
It should be safe to remove those redundant codes in ClientLoader.