- Disable fake lag
This commit is contained in:
Tristan B. Velloza Kildaire 2023-07-04 10:58:35 +02:00
parent 3d8320428d
commit a62298d637
1 changed files with 5 additions and 0 deletions

View File

@ -326,6 +326,11 @@ void main(string[] args)
/* Configure IRC client */
ConnectionInfo connInfo = ConnectionInfo.newConnection(serverHost, serverPort, nickname, "tbot", "TLang Bot");
/* Set fakelag to none */
connInfo.setFakeLag(0);
/* Create a new IRC bot instance */
ircBot = new IRCBot(connInfo);
/* Connect to the server */