X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_console.pas;h=cbfcf5faaabf1134618ca6942c99485d89bb364d;hb=4bf6da74deaa56a43fa6b0ad15c1bf4054ac6fd4;hp=cde25fedb4c279a6a55cb17da39a41b5019aa45c;hpb=3d9a4caf6b9c79640ea51cd8b5cdf602c5ed19a2;p=d2df-sdl.git diff --git a/src/game/g_console.pas b/src/game/g_console.pas index cde25fe..cbfcf5f 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -906,12 +906,13 @@ begin AddCommand('d_joy', DebugCommands); AddCommand('d_mem', DebugCommands); - AddCommand('p1_name', GameCVars); - AddCommand('p2_name', GameCVars); - AddCommand('p1_color', GameCVars); - AddCommand('p2_color', GameCVars); - AddCommand('p1_model', GameCVars); - AddCommand('p2_model', GameCVars); + AddCommand('p1_name', PlayerSettingsCVars); + AddCommand('p2_name', PlayerSettingsCVars); + AddCommand('p1_color', PlayerSettingsCVars); + AddCommand('p2_color', PlayerSettingsCVars); + AddCommand('p1_model', PlayerSettingsCVars); + AddCommand('p2_model', PlayerSettingsCVars); + AddCommand('r_showscore', GameCVars); AddCommand('r_showlives', GameCVars); AddCommand('r_showstat', GameCVars); @@ -931,15 +932,13 @@ begin AddCommand('g_maxlives', GameCVars); AddCommand('g_warmuptime', GameCVars); AddCommand('g_spawn_invul', GameCVars); - AddCommand('net_interp', GameCVars); - AddCommand('net_forceplayerupdate', GameCVars); - AddCommand('net_predictself', GameCVars); - AddCommand('sv_name', GameCVars); - AddCommand('sv_passwd', GameCVars); - AddCommand('sv_maxplrs', GameCVars); - AddCommand('sv_public', GameCVars); AddCommand('sv_intertime', GameCVars); + AddCommand('sv_name', NetServerCVars); + AddCommand('sv_passwd', NetServerCVars); + AddCommand('sv_maxplrs', NetServerCVars); + AddCommand('sv_public', NetServerCVars); + AddCommand('quit', GameCommands); AddCommand('exit', GameCommands); AddCommand('pause', GameCommands);