Skip to content

Commit b6c1ffd

Browse files
committed
Remove debug prints
1 parent 5732d97 commit b6c1ffd

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

scripting/mcp-chattags.sp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,9 @@ public void OnClientPostAdminCheck(int client) {
117117
// // should we refresh?
118118
bool refresh = ((crc != oldCrc && load==2) || load==1);
119119

120-
PrintToServer("[ChatTag] %N %s (%04X -> %04X)", client, refresh ? "Refresh" : "Keep", oldCrc, crc);
121-
122120
//if profile should refresh, pick the first match and save
123121
if (refresh && list.Length>0) {
124122
list.GetString(0, tmp, sizeof(tmp));
125-
PrintToServer("[ChatTag] %N active profile now %s", client, tmp);
126123
mcpct_profile.Set(client, tmp);
127124
mcpct_style.Set(client, "15");
128125
}
@@ -220,7 +217,6 @@ bool UpdateProfile(int client) {
220217
}
221218

222219
void ProcessTagStyle(char[] tag, int taglen, ChatStyleOptions style) {
223-
PrintToServer("[ChatTag] Style: %X", style);
224220
char tagcopy[MCP_MAXLENGTH_NAME];
225221
if ((style & CS_PREFIX) != CS_NONE) {
226222
strcopy(tagcopy, sizeof(tagcopy), tag);

0 commit comments

Comments
 (0)