Skip to content

Commit

Permalink
Removed Unused Param
Browse files Browse the repository at this point in the history
  • Loading branch information
caxanga334 committed Jul 28, 2021
1 parent d6a45e9 commit ec47b62
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/bwrredux/functions.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2132,7 +2132,7 @@ void KillAmmoPack(int entref)
}
}

void FrameCheckForUnbalance(int client)
void FrameCheckForUnbalance()
{
// Balanced: BLU is empty
if( GetHumanRobotCount() == 0 )
Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/tf_bwr_redux.sp
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ public void OnClientDisconnect_Post(int client)
{
if(GameRules_GetRoundState() == RoundState_BetweenRounds)
{
RequestFrame(FrameCheckForUnbalance, client);
RequestFrame(FrameCheckForUnbalance);
}
}

Expand Down

0 comments on commit ec47b62

Please sign in to comment.