1
0
Fork 0
forked from External/ergo

server: Fix

This commit is contained in:
Daniel Oaks 2016-06-19 21:59:18 +10:00
parent 2a519c8061
commit 9e7a590f23
8 changed files with 305 additions and 285 deletions

View file

@ -69,6 +69,8 @@ var (
SupportedUserModes = UserModes{
Away, Invisible, Operator,
}
// supportedUserModesString acts as a cache for when we introduce users
supportedUserModesString = SupportedUserModes.String()
)
const (
@ -98,6 +100,8 @@ var (
BanMask, ExceptMask, InviteMask, InviteOnly, Key, NoOutside,
OpOnlyTopic, Persistent, Secret, Theater, UserLimit,
}
// supportedChannelModesString acts as a cache for when we introduce users
supportedChannelModesString = SupportedChannelModes.String()
DefaultChannelModes = ChannelModes{
NoOutside, OpOnlyTopic,