1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-04-03 19:07:14 +02: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-11 23:58:48 +03:00
parent 6975572bfe
commit 8ad3eb8c4e

View File

@ -1324,11 +1324,11 @@ public:
{
if (help)
{
m_Help.clear();
m_Help.assign(help);
}
else
{
m_Help.assign(help);
m_Help.clear();
}
}
@ -1347,11 +1347,11 @@ public:
{
if (info)
{
m_Info.clear();
m_Info.assign(info);
}
else
{
m_Info.assign(info);
m_Info.clear();
}
}