aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/main.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/m_spanningtree/main.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/m_spanningtree/main.cpp')
-rw-r--r--src/modules/m_spanningtree/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index 306e4b7ee..6ef89e62b 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -1,6 +1,7 @@
/*
* InspIRCd -- Internet Relay Chat Daemon
*
+ * Copyright (C) 2020 Matt Schatz <genius3000@g3k.solutions>
* Copyright (C) 2019 linuxdaemon <linuxdaemon.irc@gmail.com>
* Copyright (C) 2013, 2017-2020 Sadie Powell <sadie@witchery.services>
* Copyright (C) 2013, 2016 Adam <Adam@anope.org>
@@ -134,7 +135,7 @@ void ModuleSpanningTree::ShowLinks(TreeServer* Current, User* user, int hops)
ShowLinks(server, user, hops+1);
}
}
- /* Don't display the line if its a uline, hide ulines is on, and the user isnt an oper */
+ /* Don't display the line if its a uline, hide ulines is on, and the user isn't an oper */
if ((Utils->HideULines) && (Current->IsULine()) && (!user->IsOper()))
return;
/* Or if the server is hidden and they're not an oper */