Skip to content

Commit c0d7894

Browse files
committed
feat: LEO MODE (show cheats by default)
1 parent d15c37b commit c0d7894

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/cvars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
|sar_challenge_autostop|0|Automatically stops recording demos when the leaderboard opens after a CM run. If 2, automatically appends the run time to the demo name.|
127127
|sar_challenge_autosubmit_reload_api_key|cmd|sar_challenge_autosubmit_reload_api_key - reload the boards API key from its file.|
128128
|sar_chat|cmd|sar_chat - open the chat HUD|
129-
|sar_cheat_hud|1|Display a warning in the HUD when cheats are active. 0 = disable, 1 = display if sv_cheats off, 2 = display always|
129+
|sar_cheat_hud|2|Display a warning in the HUD when cheats are active. 0 = disable, 1 = display if sv_cheats off, 2 = display always|
130130
|sar_cheat_hud_x|-4|X position of the cheat warning HUD.|
131131
|sar_cheat_hud_y|4|Y position of the cheat warning HUD.|
132132
|sar_check_update|cmd|sar_check_update [release\|pre\|canary] - check whether the latest version of SAR is being used|

src/Features/Hud/CheatWarn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "Modules/Engine.hpp"
99
#include "Variable.hpp"
1010

11-
Variable sar_cheat_hud("sar_cheat_hud", "1", 0, 2, "Display a warning in the HUD when cheats are active. 0 = disable, 1 = display if sv_cheats off, 2 = display always\n");
11+
Variable sar_cheat_hud("sar_cheat_hud", "2", 0, 2, "Display a warning in the HUD when cheats are active. 0 = disable, 1 = display if sv_cheats off, 2 = display always\n");
1212
Variable sar_cheat_hud_x("sar_cheat_hud_x", "-4", "X position of the cheat warning HUD.\n", 0);
1313
Variable sar_cheat_hud_y("sar_cheat_hud_y", "4", "Y position of the cheat warning HUD.\n", 0);
1414

0 commit comments

Comments
 (0)