1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2026-01-04 15:31:36 +00:00

Fixed empty listen IPs breaking automatic config (#519)

This commit is contained in:
rtm516
2020-05-09 04:58:29 +01:00
committed by GitHub
parent e58ffdd3c0
commit 7b3893ff78
4 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ public class GeyserBukkitPlugin extends JavaPlugin implements GeyserBootstrap {
// Don't change the ip if its listening on all interfaces
// By default this should be 127.0.0.1 but may need to be changed in some circumstances
if (!Bukkit.getIp().equals("0.0.0.0")) {
if (!Bukkit.getIp().equals("0.0.0.0") && !Bukkit.getIp().equals("")) {
getConfig().set("remote.address", Bukkit.getIp());
}