diff options
author | Adam <Adam@anope.org> | 2013-07-01 22:17:52 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-07-01 22:17:52 -0400 |
commit | 1a3d9a016d3adc49788bbff73aac9b3b5ea85b17 (patch) | |
tree | c0ecf92ed768473bc82ff64a7fce827245f37ba9 /src/config.cpp | |
parent | 518182ac9204f815258b0de91b3f884d8efa1502 (diff) |
Change extensible keys to require explicitly having a type defined for it. Completely modularize more features like bs_kick, entrymsg, log, mode, etc. Move fantasy to its own module. Move greet to its own module.
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.cpp b/src/config.cpp index 4b16d8e97..8ba56bda2 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -339,7 +339,7 @@ Conf::Conf() : Block("") if (!c) continue; // Can't happen - c->Extend("BOTCHANNEL"); + c->botchannel = true; /* Remove all existing modes */ ChanUserContainer *cu = c->FindUser(bi); @@ -377,7 +377,7 @@ Conf::Conf() : Block("") Channel *c = Channel::Find(chname); if (c) { - c->Shrink("BOTCHANNEL"); + c->botchannel = false; bi->Part(c); } } |