Skip to content

Commit 6a1bbc0

Browse files
committed
Fix mute binds commands
1 parent 604bb12 commit 6a1bbc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/rust/RustApp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2213,7 +2213,7 @@ private void OnTeamLeave(RelationshipManager.PlayerTeam team, BasePlayer player)
22132213

22142214
private object OnClientCommand(Connection connection, string text)
22152215
{
2216-
if (!text.StartsWith("chat.say") || text.StartsWith("chat.say \"/")) {
2216+
if (!text.StartsWith("chat.say") || text.StartsWith("chat.say \"/") || text.StartsWith("chat.say /")) {
22172217
return null;
22182218
}
22192219

0 commit comments

Comments
 (0)