mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Core/Commands: Allow using display ids higher than std::numeric_limits<uint16>::max() for .modify morph command (#21022)
This commit is contained in:
@@ -1023,7 +1023,7 @@ public:
|
||||
if (!*args)
|
||||
return false;
|
||||
|
||||
uint16 display_id = (uint16)atoi((char*)args);
|
||||
uint32 display_id = (uint32)atoi((char*)args);
|
||||
|
||||
Unit* target = handler->getSelectedUnit();
|
||||
if (!target)
|
||||
|
||||
Reference in New Issue
Block a user