From 514df14a65f134cacb68a2bdefd1cc8a73fc15e3 Mon Sep 17 00:00:00 2001 From: andiricum2 Date: Thu, 27 Jul 2023 12:09:34 +0200 Subject: [PATCH] Fixed connection for enthernet devices (0.0.0.0) Changed 127.0.0.1 IP to 0.0.0.0 127.0.0.1 does a loopback and it doesnt let outside connections to connect to the device. This only happens in servers that are connected by enthernet cable. --- piemc/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piemc/config.py b/piemc/config.py index bbe9079..dde5501 100644 --- a/piemc/config.py +++ b/piemc/config.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -HOST = "127.0.0.1" +HOST = "0.0.0.0" PORT = 19132 MAX_PLAYERS = 20 GAMEMODE = "Survival"