Skip to content

Commit

Permalink
Fixed connection for enthernet devices (0.0.0.0)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
andiricum2 committed Jul 27, 2023
1 parent f479e28 commit 514df14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piemc/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

HOST = "127.0.0.1"
HOST = "0.0.0.0"
PORT = 19132
MAX_PLAYERS = 20
GAMEMODE = "Survival"
Expand Down

0 comments on commit 514df14

Please sign in to comment.