From a47edfc12b4543b8d165aa320e86b95318cda051 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Mon, 10 Feb 2020 00:40:14 +0300 Subject: [PATCH] whitelist new cvars --- src/game/g_console.pas | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 27ef5ec..01cd41a 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -929,6 +929,7 @@ begin AddCommand('g_maxlives', GameCVars); AddCommand('g_warmuptime', GameCVars); AddCommand('g_spawn_invul', GameCVars); + AddCommand('g_respawn_items', GameCVars); AddCommand('net_interp', GameCVars); AddCommand('net_forceplayerupdate', GameCVars); AddCommand('net_predictself', GameCVars); @@ -1019,6 +1020,7 @@ begin WhitelistCommand('restart'); WhitelistCommand('kick'); WhitelistCommand('ban'); + WhitelistCommand('centerprint'); WhitelistCommand('addbot'); WhitelistCommand('bot_add'); @@ -1033,6 +1035,10 @@ begin WhitelistCommand('g_allow_monsters'); WhitelistCommand('g_scorelimit'); WhitelistCommand('g_timelimit'); + WhitelistCommand('g_dm_keys'); + WhitelistCommand('g_respawn_items'); + WhitelistCommand('g_spawn_invul'); + WhitelistCommand('g_warmuptime'); g_Console_ResetBinds; g_Console_ReadConfig(configScript); -- 2.29.2