diff options
| author | Shauren <shauren.trinity@gmail.com> | 2020-12-08 23:58:03 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2020-12-08 23:58:03 +0100 |
| commit | 0beaee407e04ae9769d9cd9d3928a67ab750d54b (patch) | |
| tree | 634b8a5cbfc30446898ebaa907992f563c40c7a8 /src/server/game/Entities/Item | |
| parent | aede11f8aa0c5774e95badd9aea323a45696a24c (diff) | |
Core/Misc: Updated SpellCastResult, SpellCustomErrors, GameError and InventoryResult enums
Diffstat (limited to 'src/server/game/Entities/Item')
| -rw-r--r-- | src/server/game/Entities/Item/ItemDefines.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/server/game/Entities/Item/ItemDefines.h b/src/server/game/Entities/Item/ItemDefines.h index db8c586cf42..1dde1a76fe9 100644 --- a/src/server/game/Entities/Item/ItemDefines.h +++ b/src/server/game/Entities/Item/ItemDefines.h @@ -124,10 +124,15 @@ enum InventoryResult : uint8 EQUIP_ERR_CANT_USE_ITEM = 99, // You can't use that item. EQUIP_ERR_CANT_BE_OBLITERATED = 100,// You can't obliterate that item EQUIP_ERR_GUILD_BANK_CONJURED_ITEM = 101,// You cannot store conjured items in the guild bank - EQUIP_ERR_CANT_DO_THAT_RIGHT_NOW = 102,// You can't do that right now. - EQUIP_ERR_BAG_FULL_6 = 103,// That bag is full. - EQUIP_ERR_CANT_BE_SCRAPPED = 104,// You can't scrap that item - EQUIP_NONE_4 = 105, + EQUIP_ERR_BAG_FULL_6 = 102,// That bag is full. + EQUIP_ERR_CANT_BE_SCRAPPED = 103,// You can't scrap that item + EQUIP_ERR_BAG_FULL_7 = 104,// That bag is full. + EQUIP_ERR_NOT_IN_PET_BATTLE = 105,// You cannot do that while in a pet battle + EQUIP_ERR_BAG_FULL_8 = 106,// That bag is full. + EQUIP_ERR_CANT_DO_THAT_RIGHT_NOW = 107,// You can't do that right now. + EQUIP_ERR_CANT_DO_THAT_RIGHT_NOW_2 = 108,// You can't do that right now. + EQUIP_ERR_NOT_IN_NPE = 109,// Not available during the tutorial + EQUIP_ERR_ITEM_COOLDOWN = 110,// Item is not ready yet. }; enum BuyResult |
