diff --git a/src/java/com/threerings/crowd/chat/data/TellFeedbackMessage.java b/src/java/com/threerings/crowd/chat/data/TellFeedbackMessage.java new file mode 100644 index 000000000..d829eb12b --- /dev/null +++ b/src/java/com/threerings/crowd/chat/data/TellFeedbackMessage.java @@ -0,0 +1,19 @@ +// +// $Id: TellFeedbackMessage.java,v 1.1 2003/06/03 23:46:10 ray Exp $ + +package com.threerings.crowd.chat.data; + +/** + * A feedback message to indicate that a tell succeeded. + */ +public class TellFeedbackMessage extends FeedbackMessage +{ + /** + * A tell feedback message is only composed on the client. + */ + public TellFeedbackMessage (String message) + { + super(message, null); + setClientInfo(message, ChatCodes.PLACE_CHAT_TYPE); + } +}