Skip to content
Merged
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
8 changes: 7 additions & 1 deletion addons/sourcemod/scripting/CustomChatColors.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2477,6 +2477,12 @@ public Action Command_SmChat(int client, int args)

public Action Command_SmPsay(int client, int args)
{
if (!client)
{
ReplyToCommand(client, "[SM] Cannot use this command from server console");
return Plugin_Handled;
}

if (args < 2)
{
CReplyToCommand(client, "{green}[SM] {default}Usage: sm_psay <name or #userid> <message>");
Expand Down Expand Up @@ -4817,4 +4823,4 @@ public Action Timer_DelayedDBConnectCCC(Handle timer, any data)
DB_Connect();
LateLoad();
return Plugin_Stop;
}
}
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/include/ccc.inc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define CCC_V_MAJOR "8"
#define CCC_V_MINOR "0"
#define CCC_V_PATCH "0"
#define CCC_V_PATCH "1"

#define CCC_VERSION CCC_V_MAJOR..."."...CCC_V_MINOR..."."...CCC_V_PATCH

Expand Down