Add dvar desc

This commit is contained in:
Diavolo 2022-06-04 22:32:03 +02:00
parent 8fcae22813
commit 88f82d297f
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5
2 changed files with 1 additions and 3 deletions

View File

@ -159,8 +159,6 @@ namespace Components
Dedicated::Dedicated()
{
// Map rotation
Dedicated::COMLogFilter = Dvar::Register<bool>("com_logFilter", true,
Game::dvar_flag::DVAR_LATCH, "Removes ~95% of unneeded lines from the log");

View File

@ -194,6 +194,6 @@ namespace Components
SVRandomMapRotation = Dvar::Register<bool>("sv_randomMapRotation", false,
Game::dvar_flag::DVAR_ARCHIVE, "Randomize map rotation when true");
SVDontRotate = Dvar::Register<bool>("sv_dontRotate", false,
Game::dvar_flag::DVAR_NONE, "");
Game::dvar_flag::DVAR_NONE, "Do not perform map rotation");
}
}