Skip to content

Commit

Permalink
pointers style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wopox1337 committed Dec 13, 2023
1 parent a0547c6 commit 75a6f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion regamedll/dlls/multiplay_gamerules.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5402,7 +5402,7 @@ void CHalfLifeMultiplay::GiveDefuserToRandomPlayer()
}

// now sort the shuffled list into subgroups
candidates.Sort([](CBasePlayer* const* left, CBasePlayer* const* right) -> int {
candidates.Sort([](CBasePlayer *const *left, CBasePlayer *const *right) -> int {
// should we prioritize humans over bots?
if (cv_bot_defer_to_human.value != 0.0f)
{
Expand Down

0 comments on commit 75a6f0d

Please sign in to comment.