mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-31 09:33:47 +00:00
fix(Core/Hunter): Stable Master, exotics pets management, tame validations. (#2100)
This commit is contained in:
@@ -3475,6 +3475,23 @@ enum PetNameInvalidReason
|
||||
PET_NAME_DECLENSION_DOESNT_MATCH_BASE_NAME = 16
|
||||
};
|
||||
|
||||
enum PetTameFailure
|
||||
{
|
||||
PET_TAME_INVALID_CREATURE = 1,
|
||||
PET_TAME_TOO_MANY = 2,
|
||||
PET_TAME_CREATURE_ALREADY_OWNED = 3,
|
||||
PET_TAME_NOT_TAMEABLE = 4,
|
||||
PET_TAME_ANOTHER_SUMMON_ACTIVE = 5,
|
||||
PET_TAME_UNITS_CANT_TAME = 6,
|
||||
PET_TAME_NOPET_AVAILABLE = 7,
|
||||
PET_TAME_INTERNAL_ERROR = 8,
|
||||
PET_TAME_TOO_HIGHLEVEL = 9,
|
||||
PET_TAME_DEAD = 10,
|
||||
PET_TAME_NOTDEAD = 11,
|
||||
PET_TAME_CANT_CONTROL_EXOTIC = 12,
|
||||
PET_TAME_UNKNOWNERROR = 13
|
||||
};
|
||||
|
||||
enum DungeonStatusFlag
|
||||
{
|
||||
DUNGEON_STATUSFLAG_NORMAL = 0x01,
|
||||
|
||||
Reference in New Issue
Block a user