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

Fixed a crash on insp12 if we receeve a part without a reason

This commit is contained in:
Adam
2010-10-08 16:03:48 -04:00
parent 7e62fcf4b3
commit d5e6bd8391
+1 -1
View File
@@ -782,7 +782,7 @@ bool event_privmsg(const Anope::string &source, const std::vector<Anope::string>
bool event_part(const Anope::string &source, const std::vector<Anope::string> &params)
{
do_part(source, params[0], params[1]);
do_part(source, params[0], (params.size() > 1 ? params[1] : ""));
return true;
}