summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/modes/user/InvisibleMode.java
blob: f86da15a5993a45655d01a7433346e2452872101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package f00f.net.irc.martyr.modes.user;

import f00f.net.irc.martyr.Mode;

public class InvisibleMode extends GenericUserMode
{
	public char getChar()
	{
		return 'i';
	}
	
	public boolean requiresParam()
	{
		return false;
	}
	
	public Mode newInstance()
	{
		return new InvisibleMode();
	}
}