Skip to content

Commit c8a0853

Browse files
committed
Add warning to hide
1 parent a177514 commit c8a0853

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: cfg/cs2fixes/cs2fixes.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cs2f_topdefender_enable 0 // Whether to use TopDefender
1010
cs2f_block_team_messages 0 // Whether to block team join messages
1111
cs2f_movement_unlocker_enable 0 // Whether to enable movement unlocker
1212
cs2f_use_old_push 0 // Whether to use the old CSGO trigger_push behavior (Necessary for surf and other modes that heavily use ported pushes)
13-
cs2f_hide_enable 0 // Whether to enable hide
13+
cs2f_hide_enable 0 // Whether to enable hide (WARNING: randomly crashes clients since 2023-12-13 CS2 update)
1414
cs2f_votemanager_enable 0 // Whether to enable votemanager features such as map vote fix, nominations, RTV and extends
1515
cs2f_trigger_timer_enable 0 // Whether to process countdown messages said by Console (e.g. Hold for 10 seconds) and append the round time where the countdown resolves
1616
cs2f_block_nav_lookup 0 // Whether to block navigation mesh lookup, improves server performance but breaks bot navigation

Diff for: src/commands.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ bool g_bEnableHide = false;
497497
static int g_iDefaultHideDistance = 250;
498498
static int g_iMaxHideDistance = 2000;
499499

500-
FAKE_BOOL_CVAR(cs2f_hide_enable, "Whether to enable hide", g_bEnableHide, false, false)
500+
FAKE_BOOL_CVAR(cs2f_hide_enable, "Whether to enable hide (WARNING: randomly crashes clients since 2023-12-13 CS2 update)", g_bEnableHide, false, false)
501501
FAKE_INT_CVAR(cs2f_hide_distance_default, "The default distance for hide", g_iDefaultHideDistance, 250, false)
502502
FAKE_INT_CVAR(cs2f_hide_distance_max, "The max distance for hide", g_iMaxHideDistance, 2000, false)
503503

0 commit comments

Comments
 (0)