]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_commonchans.cpp
Add the Numerics::CannotSendTo class and switch stuff to use it.
[user/henk/code/inspircd.git] / src / modules / m_commonchans.cpp
index f3c206a4492bf17c4b6015f990820e59d91b04ef..1e9ca3fee3bf347c6ea0a6f4cf5ab15b102c909b 100644 (file)
@@ -1,8 +1,11 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2019 Peter Powell <petpow@saberuk.com>
- *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2013, 2017, 2019 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2012 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2007 Craig Edwards <brain@inspircd.org>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
  * redistribute it and/or modify it under the terms of the GNU General Public
@@ -34,13 +37,13 @@ class ModuleCommonChans
                        return MOD_RES_PASSTHRU;
 
                User* targuser = target.Get<User>();
-               if (!targuser->IsModeSet(mode) || !user->SharesChannelWith(targuser))
+               if (!targuser->IsModeSet(mode) || user->SharesChannelWith(targuser))
                        return MOD_RES_PASSTHRU;
 
                if (user->HasPrivPermission("users/ignore-commonchans") || user->server->IsULine())
                        return MOD_RES_PASSTHRU;
 
-               user->WriteNumeric(ERR_CANTSENDTOUSER, targuser->nick, "You are not permitted to send private messages to this user (+c is set)");
+               user->WriteNumeric(Numerics::CannotSendTo(targuser, "messages", &mode));
                return MOD_RES_DENY;
        }