mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 13:37:00 +00:00
[10228] Missing send packet in empty vendor item list case.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
e8f18b1606
commit
6b0746b49b
2 changed files with 2 additions and 1 deletions
|
|
@ -744,6 +744,7 @@ void WorldSession::SendListInventory(uint64 vendorguid)
|
||||||
data << uint64(vendorguid);
|
data << uint64(vendorguid);
|
||||||
data << uint8(0); // count==0, next will be error code
|
data << uint8(0); // count==0, next will be error code
|
||||||
data << uint8(0); // "Vendor has no inventory"
|
data << uint8(0); // "Vendor has no inventory"
|
||||||
|
SendPacket(&data);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10227"
|
#define REVISION_NR "10228"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue