Skip to content

Commit d6888a6

Browse files
authored
Merge pull request #273 from Gideon357/readme-update
Update README.md - Formatting & Multiplayer
2 parents 0b29b8d + 72f051b commit d6888a6

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,28 +65,30 @@ terminal.
6565

6666
### Multiplayer
6767

68-
Register for an account!
69-
70-
https://craft.michaelfogleman.com/
68+
After many years, craft.michaelfogleman.com has been taken down. See the [Server](#server) section for info on self-hosting.
7169

7270
#### Client
7371

7472
You can connect to a server with command line arguments...
7573

76-
./craft craft.michaelfogleman.com
74+
```bash
75+
./craft [HOST [PORT]]
76+
```
7777
7878
Or, with the "/online" command in the game itself.
79-
80-
/online craft.michaelfogleman.com
79+
80+
/online [HOST [PORT]]
8181
8282
#### Server
8383
8484
You can run your own server or connect to mine. The server is written in Python
8585
but requires a compiled DLL so it can perform the terrain generation just like
8686
the client.
8787
88-
gcc -std=c99 -O3 -fPIC -shared -o world -I src -I deps/noise deps/noise/noise.c src/world.c
89-
python server.py [HOST [PORT]]
88+
```bash
89+
gcc -std=c99 -O3 -fPIC -shared -o world -I src -I deps/noise deps/noise/noise.c src/world.c
90+
python server.py [HOST [PORT]]
91+
```
9092
9193
### Controls
9294

0 commit comments

Comments
 (0)