mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 04:56:20 +00:00
[Bug] UINT32 EmoteID (#2369)
emoteid packet structure is UINT32 but a number of references are in UINT16.
This commit is contained in:
@@ -10,7 +10,7 @@ void command_emotesearch(Client *c, const Seperator *sep)
|
||||
int count = 0;
|
||||
|
||||
if (Seperator::IsNumber(search_criteria)) {
|
||||
uint16 emoteid = atoi(search_criteria);
|
||||
uint32 emoteid = atoi(search_criteria);
|
||||
LinkedListIterator<NPC_Emote_Struct *> iterator(zone->NPCEmoteList);
|
||||
iterator.Reset();
|
||||
while (iterator.MoreElements()) {
|
||||
|
||||
Reference in New Issue
Block a user