Set medium difficulty by default

This commit is contained in:
smallmodel 2024-11-09 13:27:24 +01:00
parent 2e0e5db260
commit f646151ce2
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -1697,11 +1697,9 @@ void SV_AddOperatorCommands(void) {
Cmd_AddCommand("difficultyMedium", SV_MediumMode_f);
Cmd_AddCommand("difficultyHard", SV_HardMode_f);
if (developer->integer) {
SV_MediumMode_f();
} else {
SV_EasyMode_f();
}
// Changed in 2.0
// Set medium mode regardless of if the developer mode is set
SV_MediumMode_f();
}
/*