aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-05-05 22:03:14 +0100
committerGravatar Sadie Powell2020-05-05 22:03:14 +0100
commitb755d2a778e0adb86c3b10757083c169eedb6de6 (patch)
tree3d737ea47c535c4b60076feb26055e68f7d8aec5 /src/modules.cpp
parentRevert "Convert UserType to an enum class". (diff)
parentFix shuns not being applied correctly. (diff)
downloadinspircd++-b755d2a778e0adb86c3b10757083c169eedb6de6.tar.gz
inspircd++-b755d2a778e0adb86c3b10757083c169eedb6de6.tar.bz2
inspircd++-b755d2a778e0adb86c3b10757083c169eedb6de6.zip
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 945dd804d..45e746341 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -1,6 +1,7 @@
/*
* InspIRCd -- Internet Relay Chat Daemon
*
+ * Copyright (C) 2020 Matt Schatz <genius3000@g3k.solutions>
* Copyright (C) 2019 nia <nia@netbsd.org>
* Copyright (C) 2019 iwalkalone <iwalkalone69@gmail.com>
* Copyright (C) 2013, 2017-2020 Sadie Powell <sadie@witchery.services>
@@ -224,7 +225,7 @@ bool ModuleManager::SetPriority(Module* mod, Implementation i, Priority s, Modul
}
/* Eh? this module doesnt exist, probably trying to set priority on an event
- * theyre not attached to.
+ * they're not attached to.
*/
return false;
@@ -305,7 +306,7 @@ swap_now:
bool ModuleManager::PrioritizeHooks()
{
/* We give every module a chance to re-prioritize when we introduce a new one,
- * not just the one thats loading, as the new module could affect the preference
+ * not just the one that's loading, as the new module could affect the preference
* of others
*/
for (int tries = 0; tries < 20; tries++)