From 136937184e2683fa38befdb8734fcd4866345d26 Mon Sep 17 00:00:00 2001 From: EmosewaMC <39972741+EmosewaMC@users.noreply.github.com> Date: Fri, 17 Jun 2022 22:18:46 -0700 Subject: [PATCH] Add to common vars and dnet Added values to enums on dnet and common vars that were missing --- dCommon/dCommonVars.h | 6 ++++++ dNet/dMessageIdentifiers.h | 1 + 2 files changed, 7 insertions(+) diff --git a/dCommon/dCommonVars.h b/dCommon/dCommonVars.h index cbecdd37..a52a1dc6 100644 --- a/dCommon/dCommonVars.h +++ b/dCommon/dCommonVars.h @@ -415,6 +415,12 @@ enum eReplicaComponentType : int32_t { COMPONENT_TYPE_MODEL = 5398484 //look man idk }; +enum class UseItemResponse : uint32_t { + NoImaginationForPet = 1, + FailedPrecondition, + MountsNotAllowed +}; + /** * Represents the different types of inventories an entity may have */ diff --git a/dNet/dMessageIdentifiers.h b/dNet/dMessageIdentifiers.h index 8e20ab54..5b2ff639 100644 --- a/dNet/dMessageIdentifiers.h +++ b/dNet/dMessageIdentifiers.h @@ -376,6 +376,7 @@ enum GAME_MSG : unsigned short { GAME_MSG_NOTIFY_PET_TAMING_PUZZLE_SELECTED = 675, GAME_MSG_SHOW_PET_ACTION_BUTTON = 692, GAME_MSG_SET_EMOTE_LOCK_STATE = 693, + GAME_MSG_USE_ITEM_REQUIREMENTS_RESPONSE = 703, GAME_MSG_PLAY_EMBEDDED_EFFECT_ON_ALL_CLIENTS_NEAR_OBJECT = 713, GAME_MSG_DOWNLOAD_PROPERTY_DATA = 716, GAME_MSG_QUERY_PROPERTY_DATA = 717,