Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Fix admin chat breaking #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions mod/TTT.Manager/ChatManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class ChatManager(IRoleService roleService) : IPluginBehavior
{
public void Start(BasePlugin plugin)
{
plugin.AddCommandListener("say_team", OnSayTeam);
//plugin.AddCommandListener("say_team", OnSayTeam);
}

private HookResult OnSayTeam(CCSPlayerController? caller, CommandInfo info)
Expand Down Expand Up @@ -49,4 +49,4 @@ private HookResult OnSayTeam(CCSPlayerController? caller, CommandInfo info)

return HookResult.Handled;
}
}
}
Loading