diff --git a/r5dev/common/global.cpp b/r5dev/common/global.cpp index a5b5c97c..839e556d 100644 --- a/r5dev/common/global.cpp +++ b/r5dev/common/global.cpp @@ -110,6 +110,7 @@ ConVar* sv_voiceenable = nullptr; ConVar* sv_alltalk = nullptr; ConVar* sv_usercmd_dualwield_enable = nullptr; +ConVar* player_userCmdsQueueWarning = nullptr; //#ifdef DEDICATED ConVar* sv_rcon_debug = nullptr; @@ -498,6 +499,7 @@ void ConVar_InitShipped(void) sv_voiceenable = g_pCVar->FindVar("sv_voiceenable"); sv_voiceEcho = g_pCVar->FindVar("sv_voiceEcho"); sv_alltalk = g_pCVar->FindVar("sv_alltalk"); + player_userCmdsQueueWarning = g_pCVar->FindVar("player_userCmdsQueueWarning"); sv_showhitboxes->SetMin(-1); // Allow user to go over each entity manually without going out of bounds. sv_showhitboxes->SetMax(NUM_ENT_ENTRIES - 1); diff --git a/r5dev/common/global.h b/r5dev/common/global.h index c754736e..94ff5be5 100644 --- a/r5dev/common/global.h +++ b/r5dev/common/global.h @@ -100,6 +100,7 @@ extern ConVar* sv_voiceenable; extern ConVar* sv_alltalk; extern ConVar* sv_usercmd_dualwield_enable; +extern ConVar* player_userCmdsQueueWarning; //#ifdef DEDICATED extern ConVar* sv_rcon_debug;