X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_console.pas;h=01cd41ab1c677fa9c45a791de02d2a7ea4d59644;hb=dbac531e9917e59c30dbe035439ffdae4e2e3c9a;hp=92e86c69bf220c9b4821515841f758d1e4023ab5;hpb=c2809bc43b3c99586d523e90b00272280a9cd69b;p=d2df-sdl.git diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 92e86c6..01cd41a 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -920,6 +920,7 @@ begin AddCommand('g_friendlyfire', GameCVars); AddCommand('g_weaponstay', GameCVars); AddCommand('g_allow_exit', GameCVars); + AddCommand('g_dm_keys', GameCVars); AddCommand('g_allow_monsters', GameCVars); AddCommand('g_bot_vsmonsters', GameCVars); AddCommand('g_bot_vsplayers', GameCVars); @@ -927,6 +928,8 @@ begin AddCommand('g_timelimit', GameCVars); 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); @@ -970,6 +973,7 @@ begin AddCommand('reconnect', GameCommands); AddCommand('say', GameCommands); AddCommand('tell', GameCommands); + AddCommand('centerprint', GameCommands); AddCommand('overtime', GameCommands); AddCommand('rcon_password', GameCommands); AddCommand('rcon', GameCommands); @@ -1016,6 +1020,7 @@ begin WhitelistCommand('restart'); WhitelistCommand('kick'); WhitelistCommand('ban'); + WhitelistCommand('centerprint'); WhitelistCommand('addbot'); WhitelistCommand('bot_add'); @@ -1030,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);