* Allow AHbot to pull items from reference_loot_template for auction.

* Credits to click
* Remove no longer needed check for non-supported client versions for loot
* Generation

--HG--
branch : trunk
This commit is contained in:
Brian
2010-03-30 12:01:37 -06:00
parent b66f312888
commit 00bb3d5cb7

View File

@@ -857,13 +857,12 @@ void AuctionHouseBot::Initialize()
}
char lootQuery[] = "SELECT item FROM creature_loot_template UNION "
"SELECT item FROM reference_loot_template UNION "
"SELECT item FROM disenchant_loot_template UNION "
"SELECT item FROM fishing_loot_template UNION "
"SELECT item FROM gameobject_loot_template UNION "
"SELECT item FROM item_loot_template UNION "
#if CLIENT_VER > 300
"SELECT item FROM milling_loot_template UNION "
#endif
"SELECT item FROM pickpocketing_loot_template UNION "
"SELECT item FROM prospecting_loot_template UNION "
"SELECT item FROM skinning_loot_template";