1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 22:53:13 +02:00

Send uids everywhere when setting modes on clients

This commit is contained in:
Adam
2012-10-30 21:22:10 -04:00
parent 26a4a13cdf
commit 1730bfb2bc
13 changed files with 51 additions and 32 deletions
+2 -2
View File
@@ -55,9 +55,9 @@ class CommandModeBase : public Command
else
{
if (set)
c->SetMode(NULL, cm, u2->nick);
c->SetMode(NULL, cm, u2->GetUID());
else
c->RemoveMode(NULL, cm, u2->nick);
c->RemoveMode(NULL, cm, u2->GetUID());
Log(LOG_COMMAND, source, com, ci) << "for " << u2->nick;
}