1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-04-04 19:37: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) if (help)
{ {
m_Help.clear(); m_Help.assign(help);
} }
else else
{ {
m_Help.assign(help); m_Help.clear();
} }
} }
@ -1347,11 +1347,11 @@ public:
{ {
if (info) if (info)
{ {
m_Info.clear(); m_Info.assign(info);
} }
else else
{ {
m_Info.assign(info); m_Info.clear();
} }
} }