diff --git a/README.md b/README.md index 825df0ec8ccaa761604072ffe6ad580d6900e32b..4c1c7519d755f594a394a880bf09c42a99138b3f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The repository includes two Android Studio projects, "CheckersClient" and "Check To connect to a particular server you need its IP address. Once you have this address, you can set up your client. - Open "CheckersClient" in Android Studio -- Go to `core/src/com/mygdx/game/controllers/NetworkController` and at the line `String IP4_LAN_ADDRESS = "xxx.xxx.xxx.xxx";` substitute xxx.xxx.xxx.xxx with the server's IP address. +- Go to `core/src/com/mygdx/game/controllers/NetworkController` and at the line `String IP4_LAN_ADDRESS = "xxx.xxx.xxx.xxx";` substitute xxx.xxx.xxx.xxx with the server's IP address. The line right below is `client.connect(10000, IP4_LAN_ADDRESS, 54555)`. Here change 54555 with a different TCP port if necessary. #### How to run the applications