mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-23 08:49:23 +00:00
Fixes issue when both Geyser and Floodgate are on the same server
This commit is contained in:
@@ -3,7 +3,7 @@ name: ${outputName}-Spigot
|
|||||||
author: ${project.organization.name}
|
author: ${project.organization.name}
|
||||||
website: ${project.organization.url}
|
website: ${project.organization.url}
|
||||||
version: ${project.version}
|
version: ${project.version}
|
||||||
softdepend: ["ViaVersion"]
|
softdepend: ["ViaVersion", "floodgate"]
|
||||||
api-version: 1.13
|
api-version: 1.13
|
||||||
commands:
|
commands:
|
||||||
geyser:
|
geyser:
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ public final class LinkedPlayer implements Cloneable {
|
|||||||
return new LinkedPlayer(javaUsername, javaUniqueId, bedrockId);
|
return new LinkedPlayer(javaUsername, javaUniqueId, bedrockId);
|
||||||
}
|
}
|
||||||
|
|
||||||
static LinkedPlayer fromString(String data) {
|
public static LinkedPlayer fromString(String data) {
|
||||||
String[] split = data.split(";");
|
String[] split = data.split(";");
|
||||||
if (split.length != 3) {
|
if (split.length != 3) {
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user