Skip to content

Commit

Permalink
Fixed the rcon_password variable flags: #176
Browse files Browse the repository at this point in the history
  • Loading branch information
apanteleev committed Jan 20, 2022
1 parent 3c5818a commit 701cf31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* Fixed some self-shadowing artifacts by increasing the shadow and bounce ray offsets.
* Fixed some unlit or partially lit triangles by improving the BSP cluster detection logic.
* Fixed the `MZ_IONRIPPER` sound (https://github.com/NVIDIA/Q2RTX/pull/143)
* Fixed the `rcon_password` variable flags to prevent the password from being stored (https://github.com/NVIDIA/Q2RTX/issues/176)
* Fixed the background blur behavior when the menu is opened on a system with over 24 days of uptime.
* Fixed the barriers in non-uniform control flow in the tone mapping shader (https://github.com/NVIDIA/Q2RTX/pull/129)
* Fixed the buffer flags on the acceleration structure scratch buffer (https://github.com/NVIDIA/Q2RTX/pull/142)
Expand Down
2 changes: 1 addition & 1 deletion src/common/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ void Qcommon_Init(int argc, char **argv)
allow_download_pics = Cvar_Get("allow_download_pics", "1", CVAR_ARCHIVE);
allow_download_others = Cvar_Get("allow_download_others", "0", 0);

rcon_password = Cvar_Get("rcon_password", "", CVAR_ARCHIVE);
rcon_password = Cvar_Get("rcon_password", "", CVAR_PRIVATE);

Cmd_AddCommand("z_stats", Z_Stats_f);

Expand Down

0 comments on commit 701cf31

Please sign in to comment.