Fixed pet emotes not playing

This commit is contained in:
jadebenn
2023-11-19 16:46:27 -06:00
parent c8b624c3dd
commit e835eb3966
7 changed files with 130 additions and 82 deletions

View File

@@ -1,18 +0,0 @@
#ifndef __EPETSTATUS__H__
#define __EPETSTATUS__H__
#include <cstdint>
enum ePetStatus : uint32_t {
NONE,
UNKNOWN1 = 0x1,
UNKNOWN2 = 0x2,
UNKNOWN3 = 0x4,
UNKNOWN4 = 0x8,
BEING_TAMED = 0x10,
IS_NOT_WAITING = 0x20, // Right name? - used to be decimal 20
PLAY_SPAWN_ANIM = 0x80,
TAMEABLE = 0x4000000
};
#endif //!__EPETSTATUS__H__