diff options
author | jackpoz <giacomopoz@gmail.com> | 2014-10-02 22:29:45 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2014-10-02 22:29:45 +0200 |
commit | d828d16e9e0a7416823c07d27a19f4362c3f0826 (patch) | |
tree | 66c4d6ad34fd3cb612f9b18c86725f50a0d147bd /src | |
parent | d10dc5ac3581be20bb852c1eec7c947cfcc40d3d (diff) |
Core/AHBot: Fix reference_loot_template being excluded from ahbot items
Fixes #13265
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp b/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp index 13aa1f22fa3..00e1a35973d 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp +++ b/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp @@ -84,6 +84,7 @@ bool AuctionBotSeller::Initialize() "SELECT `item` FROM `milling_loot_template` UNION " "SELECT `item` FROM `pickpocketing_loot_template` UNION " "SELECT `item` FROM `prospecting_loot_template` UNION " + "SELECT `item` FROM `reference_loot_template` UNION " "SELECT `item` FROM `skinning_loot_template` UNION " "SELECT `item` FROM `spell_loot_template`"); |