Fix blank instead of empty PART message when a user is shunned

This commit is contained in:
B00mX0r 2018-04-08 17:28:37 -07:00 committed by Peter Powell
parent aa19c8fc02
commit 3243c7d238

View File

@ -280,7 +280,7 @@ class ModuleShun : public Module
else if ((command == "PART") && (parameters.size() > 1))
{
/* same for PART */
parameters[1].clear();
parameters.pop_back();
}
/* if we're here, allow the command. */