mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-12-02 21:16:45 +01:00
Geyser can compile now
This commit is contained in:
parent
cd13e03730
commit
e69ad0e560
2 changed files with 4 additions and 4 deletions
|
@ -56,9 +56,9 @@ public class SettingsCommand extends GeyserCommand {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (session == null) return;
|
||||
SettingsUtils.buildForm(session);
|
||||
session.sendForm(session.getSettingsForm(), SettingsUtils.SETTINGS_FORM_ID);
|
||||
if (session != null) {
|
||||
session.sendForm(SettingsUtils.buildForm(session));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
|
|||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import com.google.common.base.Charsets;
|
||||
import lombok.Getter;
|
||||
import org.geysermc.connector.utils.SkinProvider;
|
||||
import org.geysermc.connector.skin.SkinProvider;
|
||||
import org.geysermc.floodgate.util.DeviceOs;
|
||||
import org.geysermc.floodgate.util.InputMode;
|
||||
import org.geysermc.floodgate.util.RawSkin;
|
||||
|
|
Loading…
Reference in a new issue