mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
Core/ChatCommands: Check whether a passed numeric enum value is valid (#25285)
(cherry picked from commit 4286e7aa02)
This commit is contained in:
committed by
Shauren
parent
3ba767c438
commit
3c82863c52
@@ -1163,14 +1163,8 @@ public:
|
||||
if (Unit* unit = handler->getSelectedUnit())
|
||||
unit->HandleEmoteCommand(emote);
|
||||
|
||||
try
|
||||
{
|
||||
handler->PSendSysMessage("Playing emote %s", EnumUtils::ToConstant(emote));
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
handler->PSendSysMessage("Playing unknown emote");
|
||||
}
|
||||
handler->PSendSysMessage("Playing emote %s", EnumUtils::ToConstant(emote));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user