ModernUO/Projects/Scripts/Engines/Chat/Chatold.cs
2019-11-11 08:46:11 -08:00

15 lines
No EOL
322 B
C#

namespace Server.Chat
{
public class ChatSystem
{
public static void Initialize()
{
EventSink.ChatRequest += EventSink_ChatRequest;
}
private static void EventSink_ChatRequest(ChatRequestEventArgs e)
{
e.Mobile.SendMessage("Chat is not currently supported.");
}
}
}