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

import f00f.net.irc.martyr.modes.GenericMode;

/**
 * 
 */
public abstract class GenericUserMode extends GenericMode
{
	public boolean recordInChannel()
	{
		return false;
	}

	/**
	 * Well, this is kind of irrelevent isn't it?
	 */
	public boolean onePerChannel()
	{
		return false;
	}
}