diff options
author | Adam <Adam@anope.org> | 2010-07-27 02:03:10 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-27 02:03:10 -0400 |
commit | d4048134afd28a68004e8d296bcf01a9ae1bb5e0 (patch) | |
tree | 7a4af43a96ee214455891a3c9d9a8bedb6898863 /modules/protocol/unreal32.cpp | |
parent | 57bb7593059242652c57aae4391b45416dc7fa70 (diff) |
Some windows fixes from the Anope::string commit
Diffstat (limited to 'modules/protocol/unreal32.cpp')
-rw-r--r-- | modules/protocol/unreal32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal32.cpp b/modules/protocol/unreal32.cpp index a8aee3790..4383d88c4 100644 --- a/modules/protocol/unreal32.cpp +++ b/modules/protocol/unreal32.cpp @@ -1299,7 +1299,7 @@ class ProtoUnreal : public Module pmodule_ircd_useTSMode(0); CapabType c[] = { CAPAB_NOQUIT, CAPAB_NICKIP, CAPAB_ZIP, CAPAB_TOKEN, CAPAB_SSJ3, CAPAB_NICK2, CAPAB_VL, CAPAB_TLKEXT, CAPAB_CHANMODE, CAPAB_NICKCHARS }; - for (unsigned i = 0; i < 11; ++i) + for (unsigned i = 0; i < 10; ++i) Capab.SetFlag(c[i]); AddModes(); |