mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 13:51:31 +00:00
Rename "giveadmin" and "removeadmin" to "promote" and "demote"
This commit is contained in:
parent
aa56911b2e
commit
f2072b973b
1 changed files with 5 additions and 5 deletions
|
@ -522,9 +522,9 @@ void D_RegisterServerCommands(void)
|
||||||
COM_AddCommand("password", Command_Changepassword_f);
|
COM_AddCommand("password", Command_Changepassword_f);
|
||||||
RegisterNetXCmd(XD_LOGIN, Got_Login);
|
RegisterNetXCmd(XD_LOGIN, Got_Login);
|
||||||
COM_AddCommand("login", Command_Login_f); // useful in dedicated to kick off remote admin
|
COM_AddCommand("login", Command_Login_f); // useful in dedicated to kick off remote admin
|
||||||
COM_AddCommand("giveadmin", Command_Verify_f);
|
COM_AddCommand("promote", Command_Verify_f);
|
||||||
RegisterNetXCmd(XD_VERIFIED, Got_Verification);
|
RegisterNetXCmd(XD_VERIFIED, Got_Verification);
|
||||||
COM_AddCommand("removeadmin", Command_RemoveAdmin_f);
|
COM_AddCommand("demote", Command_RemoveAdmin_f);
|
||||||
RegisterNetXCmd(XD_DEMOTED, Got_Removal);
|
RegisterNetXCmd(XD_DEMOTED, Got_Removal);
|
||||||
|
|
||||||
COM_AddCommand("motd", Command_MotD_f);
|
COM_AddCommand("motd", Command_MotD_f);
|
||||||
|
@ -3493,7 +3493,7 @@ static void Got_Login(UINT8 **cp, INT32 playernum)
|
||||||
if (!memcmp(sentmd5, finalmd5, 16))
|
if (!memcmp(sentmd5, finalmd5, 16))
|
||||||
{
|
{
|
||||||
CONS_Printf(M_GetText("%s passed authentication.\n"), player_names[playernum]);
|
CONS_Printf(M_GetText("%s passed authentication.\n"), player_names[playernum]);
|
||||||
COM_BufInsertText(va("giveadmin %d\n", playernum)); // do this immediately
|
COM_BufInsertText(va("promote %d\n", playernum)); // do this immediately
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
CONS_Printf(M_GetText("Password from %s failed.\n"), player_names[playernum]);
|
CONS_Printf(M_GetText("Password from %s failed.\n"), player_names[playernum]);
|
||||||
|
@ -3567,7 +3567,7 @@ static void Command_Verify_f(void)
|
||||||
|
|
||||||
if (COM_Argc() != 2)
|
if (COM_Argc() != 2)
|
||||||
{
|
{
|
||||||
CONS_Printf(M_GetText("giveadmin <node>: give admin privileges to a node\n"));
|
CONS_Printf(M_GetText("promote <node>: give admin privileges to a node\n"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3623,7 +3623,7 @@ static void Command_RemoveAdmin_f(void)
|
||||||
|
|
||||||
if (COM_Argc() != 2)
|
if (COM_Argc() != 2)
|
||||||
{
|
{
|
||||||
CONS_Printf(M_GetText("removeadmin <node>: remove admin privileges from a node\n"));
|
CONS_Printf(M_GetText("demote <node>: remove admin privileges from a node\n"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue