Don't try to show the server settings form to players who are not logged in (#4387)

* Don't show the server settings form to players who are not yet logged in

* Add brackets to if statement
This commit is contained in:
chris 2024-01-20 12:03:32 +01:00 committed by GitHub
parent 509e00c138
commit 16f9f0d94f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -42,6 +42,11 @@ public class BedrockServerSettingsRequestTranslator extends PacketTranslator<Ser
@Override
public void translate(GeyserSession session, ServerSettingsRequestPacket packet) {
// UUID is null when we're not logged in, which causes the hasPermission check to fail
if (!session.isLoggedIn()) {
return;
}
CustomForm form = SettingsUtils.buildForm(session);
int formId = session.getFormCache().addForm(form);