From c8a88bfc49d52ff9ad441d036ecaa95565f49e8e Mon Sep 17 00:00:00 2001 From: heipizhu4 <100454479+heipizhu4@users.noreply.github.com> Date: Mon, 28 Mar 2022 22:34:08 +0800 Subject: [PATCH] Update Hosting_a_Multiplayer_server.md (#6424) * Update Hosting_a_Multiplayer_server.md * Update Hosting_a_Multiplayer_server.md --- docs/Other/Hosting_a_Multiplayer_server.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/Other/Hosting_a_Multiplayer_server.md b/docs/Other/Hosting_a_Multiplayer_server.md index ca575db6a0..2587a44569 100644 --- a/docs/Other/Hosting_a_Multiplayer_server.md +++ b/docs/Other/Hosting_a_Multiplayer_server.md @@ -10,6 +10,14 @@ To do so, you must have a JDK installed. From the directory where the Unciv.jar file is located, open a terminal and run the following line: `java -cp Unciv.jar com.unciv.app.desktop.UncivServer` +Don't forget to use 'cd' to switch to the correct dictionary. Here's an example in Windows. +``` +D: +cd Games +cd unciv +java -cp Unciv.jar com.unciv.app.desktop.UncivServer +``` + Your server has now started! @@ -30,4 +38,4 @@ You can of course enter the IP manually if that's easier for you. Click 'check connection' from the new device, and if you got the same result - congratulations, you're both connected to the same server and can start a multiplayer game on the server! -Please note that devices NOT connected to the same server will NOT be able to participate in multiplayer games together! \ No newline at end of file +Please note that devices NOT connected to the same server will NOT be able to participate in multiplayer games together!