1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 08:43:05 +02:00

Merge branch 'master' into feature/logging_cleanup

This commit is contained in:
Tristan B. Velloza Kildaire 2023-07-06 19:47:57 +02:00
commit 5576358f34
2 changed files with 4 additions and 4 deletions

View File

@ -1305,8 +1305,8 @@ public class Client : Thread
//bonobonet: fd08:8441:e254::5 //bonobonet: fd08:8441:e254::5
ConnectionInfo connInfo = ConnectionInfo.newConnection("worcester.community.networks.deavmi.assigned.network", 6667, "birchwood", "doggie", "Tristan B. Kildaire"); ConnectionInfo connInfo = ConnectionInfo.newConnection("worcester.community.networks.deavmi.assigned.network", 6667, "birchwood", "doggie", "Tristan B. Kildaire");
// // Set the fakelag to 1 second // Set the fakelag to 1 second (server kicks me for spam me thinks if not)
// connInfo.setFakeLag(1); connInfo.setFakeLag(1);
// Create a new Client // Create a new Client
Client client = new Client(connInfo); Client client = new Client(connInfo);

View File

@ -102,8 +102,8 @@ public shared struct ConnectionInfo
this.bulkReadSize = bulkReadSize; this.bulkReadSize = bulkReadSize;
this.quitMessage = quitMessage; this.quitMessage = quitMessage;
// Set the default fakelag to 1 // Set the default fakelag to 0 seconds (no send lag)
this.fakeLag = 1; this.fakeLag = 0;
// Set the validity mode to easy // Set the validity mode to easy
this.mode = ChecksMode.EASY; this.mode = ChecksMode.EASY;