mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fixes issue when both Geyser and Floodgate are on the same server
This commit is contained in:
parent
66867edbc3
commit
0832e7d65c
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ name: ${outputName}-Spigot
|
|||
author: ${project.organization.name}
|
||||
website: ${project.organization.url}
|
||||
version: ${project.version}
|
||||
softdepend: ["ViaVersion"]
|
||||
softdepend: ["ViaVersion", "floodgate"]
|
||||
api-version: 1.13
|
||||
commands:
|
||||
geyser:
|
||||
|
|
|
@ -57,7 +57,7 @@ public final class LinkedPlayer implements Cloneable {
|
|||
return new LinkedPlayer(javaUsername, javaUniqueId, bedrockId);
|
||||
}
|
||||
|
||||
static LinkedPlayer fromString(String data) {
|
||||
public static LinkedPlayer fromString(String data) {
|
||||
String[] split = data.split(";");
|
||||
if (split.length != 3) {
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue