diff options
author | Peter Powell <petpow@saberuk.com> | 2019-12-14 18:37:23 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-12-14 18:38:13 +0000 |
commit | 6617d29b5227f962c348e638a373ebb78989b7ba (patch) | |
tree | e2d6da92be797d519cbd8e154d1ba97a8c656884 /modules/protocol/unreal4.cpp | |
parent | a4ab6876c3f4afc087a3db90404bbdeb47525e6e (diff) |
Fix a bunch of broken indentation.
Diffstat (limited to 'modules/protocol/unreal4.cpp')
-rw-r--r-- | modules/protocol/unreal4.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/modules/protocol/unreal4.cpp b/modules/protocol/unreal4.cpp index f48981739..9089857ac 100644 --- a/modules/protocol/unreal4.cpp +++ b/modules/protocol/unreal4.cpp @@ -497,11 +497,11 @@ namespace UnrealExtban class EntryMatcher : public UnrealExtBan { public: - EntryMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) - { - } + EntryMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) + { + } - bool Matches(User *u, const Entry *e) anope_override + bool Matches(User *u, const Entry *e) anope_override { const Anope::string &mask = e->GetMask(); Anope::string real_mask = mask.substr(3); @@ -513,11 +513,11 @@ namespace UnrealExtban class RealnameMatcher : public UnrealExtBan { public: - RealnameMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) - { - } + RealnameMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) + { + } - bool Matches(User *u, const Entry *e) anope_override + bool Matches(User *u, const Entry *e) anope_override { const Anope::string &mask = e->GetMask(); Anope::string real_mask = mask.substr(3); @@ -529,11 +529,11 @@ namespace UnrealExtban class RegisteredMatcher : public UnrealExtBan { public: - RegisteredMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) - { - } + RegisteredMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) + { + } - bool Matches(User *u, const Entry *e) anope_override + bool Matches(User *u, const Entry *e) anope_override { const Anope::string &mask = e->GetMask(); return u->HasMode("REGISTERED") && mask.equals_ci(u->nick); @@ -543,17 +543,17 @@ namespace UnrealExtban class AccountMatcher : public UnrealExtBan { public: - AccountMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) - { - } + AccountMatcher(const Anope::string &mname, const Anope::string &mbase, char c) : UnrealExtBan(mname, mbase, c) + { + } - bool Matches(User *u, const Entry *e) anope_override - { - const Anope::string &mask = e->GetMask(); + bool Matches(User *u, const Entry *e) anope_override + { + const Anope::string &mask = e->GetMask(); Anope::string real_mask = mask.substr(3); - return u->Account() && Anope::Match(u->Account()->display, real_mask); - } + return u->Account() && Anope::Match(u->Account()->display, real_mask); + } }; class FingerprintMatcher : public UnrealExtBan |