summaryrefslogtreecommitdiff
path: root/modules/pseudoclients/botserv.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-08-14 19:50:08 -0400
committerAdam <Adam@anope.org>2013-08-14 19:50:08 -0400
commit65911dd1be20dc29f4e98561a85cdb1d66197699 (patch)
treea12b765ef519eb796923b386638c3b0e480479d3 /modules/pseudoclients/botserv.cpp
parent4abfdcbb9c76fa8ed9e0acfc045a68e92f2ab133 (diff)
Replace some get calls on <bool> extenisble types with hasext
Diffstat (limited to 'modules/pseudoclients/botserv.cpp')
-rw-r--r--modules/pseudoclients/botserv.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pseudoclients/botserv.cpp b/modules/pseudoclients/botserv.cpp
index aec5631d8..a016c9ef2 100644
--- a/modules/pseudoclients/botserv.cpp
+++ b/modules/pseudoclients/botserv.cpp
@@ -18,7 +18,7 @@ class BotServCore : public Module
public:
BotServCore(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PSEUDOCLIENT | VENDOR),
- persist("persist"), inhabit("inhabit")
+ persist("PERSIST"), inhabit("inhabit")
{
}
@@ -114,7 +114,7 @@ class BotServCore : public Module
void OnLeaveChannel(User *u, Channel *c) anope_override
{
/* Channel is persistent, it shouldn't be deleted and the service bot should stay */
- if (c->ci && persist && persist->Get(c->ci))
+ if (c->ci && persist && persist->HasExt(c->ci))
return;
/* Channel is syncing from a netburst, don't destroy it as more users are probably wanting to join immediatly
@@ -124,7 +124,7 @@ class BotServCore : public Module
return;
/* Additionally, do not delete this channel if ChanServ/a BotServ bot is inhabiting it */
- if (inhabit && inhabit->Get(c))
+ if (inhabit && inhabit->HasExt(c))
return;
/* This is called prior to removing the user from the channnel, so c->users.size() - 1 should be safe */