14 lines
419 B
C#
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"));
|
|
}
|
|
}
|
|
|