Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/smn_halflife.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ static cell_t PrintToChat(IPluginContext *pContext, const cell_t *params)

g_SourceMod.SetGlobalTarget(client);

char buffer[192];
char buffer[254];

{
DetectExceptions eh(pContext);
Expand Down
2 changes: 1 addition & 1 deletion plugins/include/halflife.inc
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ native PrintToChat(client, const String:format[], any:...);
*/
stock PrintToChatAll(const String:format[], any:...)
{
decl String:buffer[192];
decl String:buffer[254];

for (new i = 1; i <= MaxClients; i++)
{
Expand Down
3 changes: 3 additions & 0 deletions plugins/include/lang.inc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ native SetGlobalTransTarget(client);
/**
* Retrieves the language number of a client.
*
* By default that language number is representing the language
* that the client's Steam application is using.
*
* @param client Client index.
* @return Language number client is using.
* @error Invalid client index or client not connected.
Expand Down