summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/commands/ActionCtcp.java
blob: f599f16b742f6243fa6e0b4adc22131865b6298a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package f00f.net.irc.martyr.commands;

/**
 * ActionCtcp allows the application to do a '/me'.
 */
public class ActionCtcp extends CtcpMessage
{
	public ActionCtcp( String dest, String message )
	{
		super( dest, "ACTION " + message );
	}
}