mirror of
https://github.com/anope/anope.git
synced 2026-07-03 14:33:14 +02:00
Fix a ton of typos.
This commit is contained in:
@@ -949,7 +949,7 @@ struct IRCDMessageFJoin : IRCDMessage
|
||||
sju.second = User::Find(buf);
|
||||
if (!sju.second)
|
||||
{
|
||||
Log(LOG_DEBUG) << "FJOIN for nonexistant user " << buf << " on " << params[0];
|
||||
Log(LOG_DEBUG) << "FJOIN for non-existent user " << buf << " on " << params[0];
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -1175,7 +1175,7 @@ struct IRCDMessageOperType : IRCDMessage
|
||||
void Run(MessageSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
||||
{
|
||||
/* opertype is equivalent to mode +o because servers
|
||||
dont do this directly */
|
||||
don't do this directly */
|
||||
User *u = source.GetUser();
|
||||
if (!u->HasMode("OPER"))
|
||||
u->SetModesInternal(source, "+o");
|
||||
@@ -1371,7 +1371,7 @@ class ProtoInspIRCd12 : public Module
|
||||
/* InspIRCd 1.2 doesn't set -r on nick change, remove -r here. Note that if we have to set +r later
|
||||
* this will cancel out this -r, resulting in no mode changes.
|
||||
*
|
||||
* Do not set -r if we dont have a NickServ loaded - DP
|
||||
* Do not set -r if we don't have a NickServ loaded - DP
|
||||
*/
|
||||
BotInfo *NickServ = Config->GetClient("NickServ");
|
||||
if (NickServ)
|
||||
|
||||
Reference in New Issue
Block a user