We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6bf061 commit bc33597Copy full SHA for bc33597
src/Features/Session.cpp
@@ -255,7 +255,13 @@ void Session::Changed(int state) {
255
if (state == SIGNONSTATE_NEW) {
256
engine->ExecuteCommand("showconsole");
257
} else if (state == SIGNONSTATE_SPAWN) {
258
- engine->ExecuteCommand("showconsole; hwait 6 seq toggleconsole toggleconsole");
+ int host, server, client;
259
+ engine->GetTicks(host, server, client);
260
+ if ((server % 2) == 1) {
261
+ engine->ExecuteCommand("showconsole; hwait 6 seq nop toggleconsole nop nop toggleconsole");
262
+ } else {
263
+ engine->ExecuteCommand("showconsole; hwait 6 seq toggleconsole toggleconsole");
264
+ }
265
g_autovoidclip = 0;
266
}
267
0 commit comments