1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
May B. 686472aa27 Better multiplayer 2020-10-21 15:51:46 +02:00
2 changed files with 6 additions and 4 deletions

View File

@ -8,7 +8,7 @@
## Hello other
- [ ] Multiplayer
- [~] Multiplayer
- [ ] Chat
- [~] Authentication
- [x] Compression
@ -19,10 +19,12 @@
## Hello world
- [~] Map stream
- Local prediction
- [ ] Modifications compression
- [ ] Local prediction
- [ ] Contouring service
- [~] Edit
- Local prediction
- [ ] More types
- [ ] Local prediction
- [~] Occlusion Culling
- [ ] Iterator ray
- [ ] Cast from chunk center

View File

@ -16,7 +16,7 @@ public:
FATAL("Invalid ip address format");
}();
host = enet_host_create(&addr, connections, CHANNEL_COUNT, 1 << 13, 1 << 13);
host = enet_host_create(&addr, connections, CHANNEL_COUNT, 0, 0);
if(host == nullptr) {
FATAL("Network server creation failed");
}