diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 588cca2..b2caf13 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -1305,8 +1305,8 @@ public class Client : Thread //bonobonet: fd08:8441:e254::5 ConnectionInfo connInfo = ConnectionInfo.newConnection("worcester.community.networks.deavmi.assigned.network", 6667, "birchwood", "doggie", "Tristan B. Kildaire"); - // // Set the fakelag to 1 second - // connInfo.setFakeLag(1); + // Set the fakelag to 1 second (server kicks me for spam me thinks if not) + connInfo.setFakeLag(1); // Create a new Client Client client = new Client(connInfo); diff --git a/source/birchwood/config/conninfo.d b/source/birchwood/config/conninfo.d index 29649cb..25379cb 100644 --- a/source/birchwood/config/conninfo.d +++ b/source/birchwood/config/conninfo.d @@ -102,8 +102,8 @@ public shared struct ConnectionInfo this.bulkReadSize = bulkReadSize; this.quitMessage = quitMessage; - // Set the default fakelag to 1 - this.fakeLag = 1; + // Set the default fakelag to 0 seconds (no send lag) + this.fakeLag = 0; // Set the validity mode to easy this.mode = ChecksMode.EASY;