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

Fix logging in cs_mode set

This commit is contained in:
Adam
2017-02-21 12:35:51 -05:00
parent a1d7d42d6a
commit 98e62b4032
+3 -3
View File
@@ -667,10 +667,10 @@ class CommandCSMode : public Command
ci->c->RemoveMode(NULL, cm, v[j]);
}
}
}
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to set " << params[2] << (params.size() > 3 ? " " + params[3] : "");
} // switch
}
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to set " << modes << (params.size() > 3 ? " " + params[3] : "");
}
void DoClear(CommandSource &source, ChannelInfo *ci, const std::vector<Anope::string> &params)