Skip to content

Commit

Permalink
Fix unused bChat param in SayText2
Browse files Browse the repository at this point in the history
  • Loading branch information
FortyTwoFortyTwo committed Dec 3, 2024
1 parent d7788b7 commit 903f3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/szf/stocks.sp
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ stock void SayText2(int[] iClients, int iLength, int iEntity, bool bChat, const
BfWrite bf = UserMessageToBfWrite(StartMessage("SayText2", iClients, iLength, USERMSG_RELIABLE|USERMSG_BLOCKHOOKS));

bf.WriteByte(iEntity);
bf.WriteByte(true);
bf.WriteByte(bChat);

bf.WriteString(sMessage);

Expand Down

0 comments on commit 903f3d8

Please sign in to comment.