From 0d38a8439d506cb02b27f3ae5d3ebbf93232e362 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 6 Jul 2023 19:38:07 +0200 Subject: [PATCH] ConnInfo - Set the default send fake lag to 0 seconds (i.e. no send lag) --- source/birchwood/config/conninfo.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;