Refactored /tell idle auto-response; added support for configuring an

away/busy auto-response message.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2797 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-09-18 17:53:48 +00:00
parent e876090b93
commit 6add22f5d7
7 changed files with 113 additions and 48 deletions
@@ -1,5 +1,5 @@
//
// $Id: ChatDispatcher.java,v 1.5 2003/06/03 21:41:33 ray Exp $
// $Id: ChatDispatcher.java,v 1.6 2003/09/18 17:53:48 mdb Exp $
package com.threerings.crowd.chat.server;
@@ -53,6 +53,13 @@ public class ChatDispatcher extends InvocationDispatcher
);
return;
case ChatMarshaller.AWAY:
((ChatProvider)provider).away(
source,
(String)args[0]
);
return;
default:
super.dispatchRequest(source, methodId, args);
}