Skip to content

Commit

Permalink
Rename function for more clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikusch committed Feb 22, 2025
1 parent 12ce26b commit 368d313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/mitm/events.sp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ static void RequestFrameCallback_FindReplacementDefender()
if (Queue_IsEnabled())
Queue_FindReplacementDefender();
else
FindReplacementDefender();
FindRandomReplacementDefender();
}

static Action Timer_CheckGateBotAnnotation(Handle timer, int userid)
Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/mitm/util.sp
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ void SelectRandomDefenders()
delete players;
}

void FindReplacementDefender()
void FindRandomReplacementDefender()
{
ArrayList players = new ArrayList();

Expand Down

0 comments on commit 368d313

Please sign in to comment.