1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 03:57:14 +01:00

Fix an issue with command listeners not retaining the help/info messages. Credits @DrakezZ for spotting the issue.

This commit is contained in:
Sandu Liviu Catalin 2016-07-12 02:48:53 +03:00
parent a373682cee
commit 556aeac295

View File

@ -1290,11 +1290,11 @@ public:
// Assign the specifier, if any
if (spec)
{
m_Spec.clear();
m_Spec.assign(spec);
}
else
{
m_Spec.assign(spec);
m_Spec.clear();
}
}