summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/modes/channel/GenericChannelMask.java
blob: 13e1fc3de37bc5fafcfbb8e978a3d5cfbddfabb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package f00f.net.irc.martyr.modes.channel;


/**
 * 'Masks' and other modes that can have multiple copies in a channel
 * at once should subclass this.
 */
public abstract class GenericChannelMask extends GenericChannelMode
{
	public boolean onePerChannel()
	{
		return false;
	}
}