diff options
| author | 2006-03-08 13:06:07 +0000 | |
|---|---|---|
| committer | 2006-03-08 13:06:07 +0000 | |
| commit | bd155d530887b2cafb775b9783a938de0250c348 (patch) | |
| tree | 542b228b7a7cbbc435e75722faf7fad4a819a63c /src/channels.cpp | |
| parent | chanrec::custom_modes only needs 96 values not 190 (diff) | |
| download | inspircd++-bd155d530887b2cafb775b9783a938de0250c348.tar.gz inspircd++-bd155d530887b2cafb775b9783a938de0250c348.tar.bz2 inspircd++-bd155d530887b2cafb775b9783a938de0250c348.zip | |
Actually, 64.
(256-64-128) = 64 chars printable alphabet (roughly)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3552 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index 360996bd5..fdbaf7871 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -73,7 +73,7 @@ chanrec::chanrec() *name = *topic = *setby = *key = 0; created = topicset = limit = binarymodes = 0; internal_userlist.clear(); - memset(&custom_modes,0,96); + memset(&custom_modes,0,64); } void chanrec::SetCustomMode(char mode,bool mode_on) |
