diff --git a/network.py b/network.py index c8b105b..7c090f9 100644 --- a/network.py +++ b/network.py @@ -7,7 +7,7 @@ def __init__(self): self.client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.host = "localhost" # For this to work on your machine this must be equal to the ipv4 address of the machine running the server # You can find this address by typing ipconfig in CMD and copying the ipv4 address. Again this must be the servers - # ipv4 address. This feild will be the same for all your clients. + # ipv4 address. This field will be the same for all your clients. self.port = 5555 self.addr = (self.host, self.port) self.id = self.connect()