aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_delayjoin.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-17 06:15:39 +0000
committerGravatar Sadie Powell2021-03-17 06:15:48 +0000
commit9ad9a668d57de7858a85bd8b6b17594113e32598 (patch)
tree0ae85f731ad4db0b052322882170f18ed9acb616 /src/modules/m_delayjoin.cpp
parentPascalize Set in extension item classes. (diff)
downloadinspircd++-9ad9a668d57de7858a85bd8b6b17594113e32598.tar.gz
inspircd++-9ad9a668d57de7858a85bd8b6b17594113e32598.tar.bz2
inspircd++-9ad9a668d57de7858a85bd8b6b17594113e32598.zip
Pascalize Unset in extension item classes.
Diffstat (limited to 'src/modules/m_delayjoin.cpp')
-rw-r--r--src/modules/m_delayjoin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_delayjoin.cpp b/src/modules/m_delayjoin.cpp
index 90414271b..3e3b3c228 100644
--- a/src/modules/m_delayjoin.cpp
+++ b/src/modules/m_delayjoin.cpp
@@ -163,7 +163,7 @@ void ModuleDelayJoin::OnUserPart(Membership* memb, std::string &partmessage, CUL
{
if (unjoined.Get(memb))
{
- unjoined.unset(memb);
+ unjoined.Unset(memb);
populate(except, memb);
}
}
@@ -172,7 +172,7 @@ void ModuleDelayJoin::OnUserKick(User* source, Membership* memb, const std::stri
{
if (unjoined.Get(memb))
{
- unjoined.unset(memb);
+ unjoined.Unset(memb);
populate(except, memb);
}
}
@@ -216,7 +216,7 @@ void DelayJoinMode::RevealUser(User* user, Channel* chan)
}
/* Display the join to everyone else (the user who joined got it earlier) */
- unjoined.unset(memb);
+ unjoined.Unset(memb);
CUList except_list;
except_list.insert(user);
ClientProtocol::Events::Join joinevent(memb);