15 lines
No EOL
336 B
C#
15 lines
No EOL
336 B
C#
namespace Server.Chat
|
|
{
|
|
public class ChatSystem
|
|
{
|
|
public static void Initialize()
|
|
{
|
|
EventSink.ChatRequest += new ChatRequestEventHandler( EventSink_ChatRequest );
|
|
}
|
|
|
|
private static void EventSink_ChatRequest( ChatRequestEventArgs e )
|
|
{
|
|
e.Mobile.SendMessage( "Chat is not currently supported." );
|
|
}
|
|
}
|
|
} |