15 lines
No EOL
322 B
C#
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.");
|
|
}
|
|
}
|
|
} |