1
0
Fork 0
forked from External/ergo

theater: Remove THEATER command for now

This commit is contained in:
Daniel Oaks 2016-09-12 12:31:25 +10:00
parent 79d831bbb7
commit 266c534af9
7 changed files with 2 additions and 156 deletions

View file

@ -173,14 +173,13 @@ const (
Persistent ChannelMode = 'P' // flag
ReOp ChannelMode = 'r' // flag
Secret ChannelMode = 's' // flag
Theater ChannelMode = 'T' // flag, nonstandard
UserLimit ChannelMode = 'l' // flag arg
)
var (
SupportedChannelModes = ChannelModes{
BanMask, ExceptMask, InviteMask, InviteOnly, Key, NoOutside,
OpOnlyTopic, Persistent, Secret, Theater, UserLimit,
OpOnlyTopic, Persistent, Secret, UserLimit,
}
// supportedChannelModesString acts as a cache for when we introduce users
supportedChannelModesString = SupportedChannelModes.String()