sodoff-mmo/src/Management/Commands/DisableAllChatsCommand.cs
2026-09-03 10:34:22 -07:00

14 lines
419 B
C#

using sodoffmmo.Attributes;
using sodoffmmo.Core;
namespace sodoffmmo.Management.Commands;
[ManagementCommand("disableallchats", Role.Moderator)]
class DisableAllChatsCommand : IManagementCommand {
public void Handle(Client client, string[] arguments) {
Room.DisableAllChatOverrides();
client.Room.Send(Utils.BuildServerSideMessage("All chat overrides have been disabled", "Server"));
}
}