snake case var

This commit is contained in:
FutureRave 2022-03-03 17:43:22 +00:00
parent 5a2c0b565d
commit 74ed534bf6
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955

View File

@ -79,7 +79,7 @@ namespace Components
Dvar::OnInit([]()
{
RCon::RconPassword = Dvar::Register<const char*>("rcon_password", "", Game::dvar_flag::DVAR_FLAG_NONE, "The password for rcon");
RCon::RconLogRequests = Dvar::Register<bool>("rcon_logRequests", false, Game::dvar_flag::DVAR_FLAG_NONE, "Print remote commands in the output log");
RCon::RconLogRequests = Dvar::Register<bool>("rcon_log_requests", false, Game::dvar_flag::DVAR_FLAG_NONE, "Print remote commands in the output log");
});
Network::Handle("rcon", [](Network::Address address, const std::string& _data)