mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-25 06:53:35 +00:00
Update PetStatus enum to prep for bitset use
This commit is contained in:
parent
8f19aa96d3
commit
f5ca142eb9
@ -33,11 +33,10 @@ enum class PetInteractType : uint8_t {
|
|||||||
*/
|
*/
|
||||||
enum PetStatus : uint32_t {
|
enum PetStatus : uint32_t {
|
||||||
NONE,
|
NONE,
|
||||||
//READY_TO_DIG,
|
BEING_TAMED = 1 << 4, //0x10,
|
||||||
BEING_TAMED = 0x10,
|
IS_NOT_WAITING = 1 << 5, //0x20,
|
||||||
IS_NOT_WAITING = 0x20,
|
PLAY_SPAWN_ANIM = 1 << 7, //0x80,
|
||||||
PLAY_SPAWN_ANIM = 0x80,
|
TAMEABLE = 1 << 8 //0x4000000
|
||||||
TAMEABLE = 0x4000000
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum PetEmote : int32_t {
|
enum PetEmote : int32_t {
|
||||||
|
Loading…
Reference in New Issue
Block a user