diff options
| author | 2015-12-07 10:17:49 +0100 | |
|---|---|---|
| committer | 2015-12-07 10:17:49 +0100 | |
| commit | 6352a6f9c9685c32ec17a7d6f9f89df0e3ec3054 (patch) | |
| tree | ccc1e0d306c317a55d5c61ead43395efe2c6092b /src/modules/m_dccallow.cpp | |
| parent | Do not insert FakeUsers into UserManager::uuidlist (diff) | |
Remove some IS_SERVER() checks
- InspIRCd::FindUUID() and FindNick() no longer return FakeUsers so checking the user returned from those methods is needless
- m_dccallow is calling FindNickOnly() so it had the check needlessly
Diffstat (limited to 'src/modules/m_dccallow.cpp')
| -rw-r--r-- | src/modules/m_dccallow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp index f011fa449..93fddf813 100644 --- a/src/modules/m_dccallow.cpp +++ b/src/modules/m_dccallow.cpp @@ -104,7 +104,7 @@ class CommandDccallow : public Command std::string nick(parameters[0], 1); User *target = ServerInstance->FindNickOnly(nick); - if ((target) && (!IS_SERVER(target)) && (!target->quitting) && (target->registered == REG_ALL)) + if ((target) && (!target->quitting) && (target->registered == REG_ALL)) { if (action == '-') |
