From 954165c2eab9ced22ec6eafd3d86834b5d9581bd Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 5 Sep 2022 23:02:54 +0200 Subject: [PATCH] ConCommand: use FCVAR_GAMEDLL flags for several server commands. These could only be ran if the server is running, and allows for running them as ServerCommand. --- r5dev/tier1/cmd.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/r5dev/tier1/cmd.cpp b/r5dev/tier1/cmd.cpp index c68d9dd2..03dbe531 100644 --- a/r5dev/tier1/cmd.cpp +++ b/r5dev/tier1/cmd.cpp @@ -332,12 +332,12 @@ void ConCommand::Init(void) //------------------------------------------------------------------------- // SERVER DLL | #ifndef CLIENT_DLL - ConCommand::Create("script", "Run input code as SERVER script on the VM.", FCVAR_CHEAT, SQVM_ServerScript_f, nullptr); - ConCommand::Create("sv_kick", "Kick a client from the server by user name. | Usage: sv_kick \"\".", FCVAR_RELEASE, Host_Kick_f, nullptr); - ConCommand::Create("sv_kickid", "Kick a client from the server by handle or platform id | Usage: sv_kickid \"\"/\"\".", FCVAR_RELEASE, Host_KickID_f, nullptr); - ConCommand::Create("sv_ban", "Bans a client from the server by user name. | Usage: sv_ban .", FCVAR_RELEASE, Host_Ban_f, nullptr); - ConCommand::Create("sv_banid", "Bans a client from the server by handle, platform id or ip address | Usage: sv_banid \"\"/\"/\".", FCVAR_RELEASE, Host_BanID_f, nullptr); - ConCommand::Create("sv_unban", "Unbans a client from the server by platform id or ip address | Usage: sv_unban \"\"/\"\".", FCVAR_RELEASE, Host_Unban_f, nullptr); + ConCommand::Create("script", "Run input code as SERVER script on the VM.", FCVAR_GAMEDLL | FCVAR_CHEAT, SQVM_ServerScript_f, nullptr); + ConCommand::Create("sv_kick", "Kick a client from the server by user name. | Usage: sv_kick \"\".", FCVAR_GAMEDLL | FCVAR_RELEASE, Host_Kick_f, nullptr); + ConCommand::Create("sv_kickid", "Kick a client from the server by handle or nucleus id | Usage: sv_kickid \"\"/\"\".", FCVAR_GAMEDLL | FCVAR_RELEASE, Host_KickID_f, nullptr); + ConCommand::Create("sv_ban", "Bans a client from the server by user name. | Usage: sv_ban .", FCVAR_GAMEDLL | FCVAR_RELEASE, Host_Ban_f, nullptr); + ConCommand::Create("sv_banid", "Bans a client from the server by handle, nucleus id or ip address | Usage: sv_banid \"\"/\"/\".", FCVAR_GAMEDLL | FCVAR_RELEASE, Host_BanID_f, nullptr); + ConCommand::Create("sv_unban", "Unbans a client from the server by nucleus id or ip address | Usage: sv_unban \"\"/\"\".", FCVAR_RELEASE, Host_Unban_f, nullptr); ConCommand::Create("sv_reloadbanlist", "Reloads the ban list from the disk.", FCVAR_RELEASE, Host_ReloadBanList_f, nullptr); #endif // !CLIENT_DLL #ifndef DEDICATED