Fix playsound error

This commit is contained in:
Jackz 2022-07-08 18:47:51 -05:00
parent 20d47e0dad
commit a941649f9a
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -408,7 +408,7 @@ public Action Command_PlaySound(int client, int args) {
ReplyToCommand(client, "Playing '%s' to %N %s", arg2, target, arg3); ReplyToCommand(client, "Playing '%s' to %N %s", arg2, target, arg3);
} }
} }
ShowActivity2(client, target_name, "\"%L\" playing sound \"%s\" to \"%L\"", client, arg2, target_name); ShowActivity2(client, target_name, "\"%L\" playing sound \"%s\" to \"%s\"", client, arg2, target_name);
} }
return Plugin_Handled; return Plugin_Handled;
} }