Change lobby server ip
This commit is contained in:
5
lobby.py
5
lobby.py
@@ -5,6 +5,9 @@ import importlib
|
||||
from socket import socket, AF_INET, SOCK_STREAM
|
||||
from datetime import datetime
|
||||
|
||||
SERVER_ADDRESS = 'eveldee.ddns.net'
|
||||
SERVER_PORT = 1409
|
||||
|
||||
class Lobby:
|
||||
def __init__(self):
|
||||
# Win
|
||||
@@ -169,7 +172,7 @@ class Lobby:
|
||||
|
||||
class NetworkManager:
|
||||
def __init__(self):
|
||||
self.address = ('127.0.0.1', 1409)
|
||||
self.address = (SERVER_ADDRESS, SERVER_PORT)
|
||||
|
||||
def _createSocket(self):
|
||||
# Create TCP socket
|
||||
|
||||
Reference in New Issue
Block a user