X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sanick.cpp;h=8a4d1adcb0d2cebd1aef8acc537b0b7afacf89f7;hb=dcafba95960685120b1f6d902de623ca10ed6135;hp=724553e3c14d3c502430b21be4be094002ef16d9;hpb=c71361e8e4f22cb4f72881399bce2832eb080b0e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index 724553e3c..8a4d1adcb 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -4,10 +4,10 @@ * Copyright (C) 2013, 2018, 2020 Sadie Powell * Copyright (C) 2012-2014, 2016 Attila Molnar * Copyright (C) 2012, 2019 Robby - * Copyright (C) 2010 Craig Edwards - * Copyright (C) 2009-2010 Daniel De Graaf + * Copyright (C) 2009 Daniel De Graaf * Copyright (C) 2007-2008 Robin Burchell * Copyright (C) 2007, 2009 Dennis Friis + * Copyright (C) 2004, 2010 Craig Edwards * * 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 @@ -69,7 +69,7 @@ class CommandSanick : public Command { const std::string oldnick = target->nick; const std::string newnick = parameters[1]; - if (target->ChangeNick(newnick)) + if (!ServerInstance->FindNickOnly(newnick) && target->ChangeNick(newnick)) { ServerInstance->SNO->WriteGlobalSno('a', user->nick + " used SANICK to change " + oldnick + " to " + newnick); }