aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIntel <chemicstry@gmail.com>2014-11-06 00:52:54 +0200
committerShauren <shauren.trinity@gmail.com>2025-11-28 11:51:13 +0100
commit3a8f35e2d22b48b589cadac9f38a4b50433e0ac0 (patch)
treee2aa16df5c8c18ca2465c0afb5287b13cc29e61b
parentb5ef0d2ddb550fed49f57952d45c725ed1d87525 (diff)
Core/DataStores: Removed AreaPOI.dbc (wasn't used in core at all?)
(cherry picked from commit 3fe1ad51baa8c4bdf1506b7d176ffa3f11b68abc)
-rw-r--r--src/server/game/DataStores/DBCStores.cpp2
-rw-r--r--src/server/game/DataStores/DBCStores.h1
-rw-r--r--src/server/shared/DataStores/DBCStructure.h18
-rw-r--r--src/server/shared/DataStores/DBCfmt.h1
4 files changed, 0 insertions, 22 deletions
diff --git a/src/server/game/DataStores/DBCStores.cpp b/src/server/game/DataStores/DBCStores.cpp
index cddb7a3c2c5..70cb0529521 100644
--- a/src/server/game/DataStores/DBCStores.cpp
+++ b/src/server/game/DataStores/DBCStores.cpp
@@ -41,7 +41,6 @@ typedef std::map<WMOAreaTableKey, WMOAreaTableEntry const*> WMOAreaInfoByTripple
DBCStorage <AreaTableEntry> sAreaTableStore(AreaTableEntryfmt);
DBCStorage <AreaGroupEntry> sAreaGroupStore(AreaGroupEntryfmt);
-DBCStorage <AreaPOIEntry> sAreaPOIStore(AreaPOIEntryfmt);
static WMOAreaInfoByTripple sWMOAreaInfoByTripple;
@@ -288,7 +287,6 @@ void LoadDBCStores(const std::string& dataPath)
LOAD_DBC(sAchievementCriteriaStore, "Achievement_Criteria.dbc");
LOAD_DBC(sAreaTriggerStore, "AreaTrigger.dbc");
LOAD_DBC(sAreaGroupStore, "AreaGroup.dbc");
- LOAD_DBC(sAreaPOIStore, "AreaPOI.dbc");
LOAD_DBC(sAuctionHouseStore, "AuctionHouse.dbc");
LOAD_DBC(sBankBagSlotPricesStore, "BankBagSlotPrices.dbc");
LOAD_DBC(sBannedAddOnsStore, "BannedAddOns.dbc");
diff --git a/src/server/game/DataStores/DBCStores.h b/src/server/game/DataStores/DBCStores.h
index c1635c47158..15760817a83 100644
--- a/src/server/game/DataStores/DBCStores.h
+++ b/src/server/game/DataStores/DBCStores.h
@@ -92,7 +92,6 @@ TC_GAME_API extern DBCStorage <AchievementEntry> sAchievementStore;
TC_GAME_API extern DBCStorage <AchievementCriteriaEntry> sAchievementCriteriaStore;
TC_GAME_API extern DBCStorage <AreaTableEntry> sAreaTableStore;
TC_GAME_API extern DBCStorage <AreaGroupEntry> sAreaGroupStore;
-TC_GAME_API extern DBCStorage <AreaPOIEntry> sAreaPOIStore;
TC_GAME_API extern DBCStorage <AreaTriggerEntry> sAreaTriggerStore;
TC_GAME_API extern DBCStorage <AuctionHouseEntry> sAuctionHouseStore;
TC_GAME_API extern DBCStorage <BankBagSlotPricesEntry> sBankBagSlotPricesStore;
diff --git a/src/server/shared/DataStores/DBCStructure.h b/src/server/shared/DataStores/DBCStructure.h
index 53ef620bcd9..082a0397b66 100644
--- a/src/server/shared/DataStores/DBCStructure.h
+++ b/src/server/shared/DataStores/DBCStructure.h
@@ -223,24 +223,6 @@ struct AreaGroupEntry
uint32 NextAreaID; // 7 index of next group
};
-struct AreaPOIEntry
-{
- uint32 ID; // 0
- uint32 Importance; // 1
- uint32 Icon[9]; // 2-10
- uint32 FactionID; // 11
- DBCPosition3D Pos; // 12-14
- uint32 ContinentID; // 15
- //uint32 Flags; // 16
- uint32 AreaID; // 17
- //char const* Name[16]; // 18-33
- //uint32 Name_lang_mask; // 34
- //char const* Description[16]; // 35-50
- //uint32 Description_lang_mask; // 51
- uint32 WorldStateID; // 52
- //uint32 WorldMapLink; // 53
-};
-
struct AreaTriggerEntry
{
uint32 ID; // 0
diff --git a/src/server/shared/DataStores/DBCfmt.h b/src/server/shared/DataStores/DBCfmt.h
index da8e920df93..e19ce793b26 100644
--- a/src/server/shared/DataStores/DBCfmt.h
+++ b/src/server/shared/DataStores/DBCfmt.h
@@ -24,7 +24,6 @@ char constexpr CustomAchievementIndex[] = "ID";
char constexpr AchievementCriteriafmt[] = "niiiiiiiixxxxxxxxxxxxxxxxxiiiix";
char constexpr AreaTableEntryfmt[] = "niiiixxxxxissssssssssssssssxiiiiixxx";
char constexpr AreaGroupEntryfmt[] = "niiiiiii";
-char constexpr AreaPOIEntryfmt[] = "niiiiiiiiiiifffixixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxix";
char constexpr AreaTriggerEntryfmt[] = "niffffffff";
char constexpr AuctionHouseEntryfmt[] = "niiixxxxxxxxxxxxxxxxx";
char constexpr BankBagSlotPricesEntryfmt[] = "ni";