mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
oooooooooooops
This commit is contained in:
parent
4bf692b41a
commit
51f0d45a46
1 changed files with 2 additions and 2 deletions
|
@ -150,13 +150,13 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Check spigot config for BungeeCord mode
|
// Check spigot config for BungeeCord mode
|
||||||
if (!Boolean.TRUE.equals(Bukkit.getServer().spigot().getConfig().get("settings.bungeecord"))) {
|
if (Boolean.TRUE.equals(Bukkit.getServer().spigot().getConfig().get("settings.bungeecord"))) {
|
||||||
disableOnBackendServers("BungeeCord");
|
disableOnBackendServers("BungeeCord");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now: Check for velocity mode - deliberately after checking bungeecord because this is a paper config
|
// Now: Check for velocity mode - deliberately after checking bungeecord because this is a paper config
|
||||||
if (!Boolean.TRUE.equals(Bukkit.getServer().spigot().getPaperConfig().get("proxies.velocity.enabled"))) {
|
if (Boolean.TRUE.equals(Bukkit.getServer().spigot().getPaperConfig().get("proxies.velocity.enabled"))) {
|
||||||
disableOnBackendServers("Velocity");
|
disableOnBackendServers("Velocity");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue