diff options
Diffstat (limited to 'src/trinitycore')
-rw-r--r-- | src/trinitycore/Main.cpp | 2 | ||||
-rw-r--r-- | src/trinitycore/trinitycore.conf.dist | 17 |
2 files changed, 17 insertions, 2 deletions
diff --git a/src/trinitycore/Main.cpp b/src/trinitycore/Main.cpp index e744f74c5a1..1005e0d838a 100644 --- a/src/trinitycore/Main.cpp +++ b/src/trinitycore/Main.cpp @@ -40,7 +40,7 @@ // Format is YYYYMMDDRR where RR is the change in the conf file // for that day. #ifndef _TRINITY_CORE_CONFVER -# define _TRINITY_CORE_CONFVER 2009081701 +# define _TRINITY_CORE_CONFVER 2009081702 #endif //_TRINITY_CORE_CONFVER #ifdef WIN32 diff --git a/src/trinitycore/trinitycore.conf.dist b/src/trinitycore/trinitycore.conf.dist index 2f77ec2873a..2f59ebd0304 100644 --- a/src/trinitycore/trinitycore.conf.dist +++ b/src/trinitycore/trinitycore.conf.dist @@ -1,7 +1,7 @@ ########################################## # Trinity Core worldd configuration file # ########################################## -ConfVersion=2009081701 +ConfVersion=2009081702 ################################################################################################################### # CONNECTIONS AND DIRECTORIES @@ -1556,14 +1556,26 @@ AuctionHouseBot.ItemsPerCycle = 200 # Include items that can be bought from vendors. # Default 0 (False) # +# AuctionHouseBot.VendorTradeGoods +# Include Trade Goods that can be bought from vendors. +# Default 0 (False) +# # AuctionHouseBot.LootItems # Include items that can be looted or fished for. # Default 1 (True) # +# AuctionHouseBot.LootTradeGoods +# Include Trade Goods that can be looted or fished for. +# Default 1 (True) +# # AuctionHouseBot.OtherItems # Include misc. items. # Default 0 (False) # +# AuctionHouseBot.OtherTradeGoods +# Include misc. Trade Goods. +# Default 0 (False) +# # AuctionHouseBot.Bonding_types # Indicates which bonding types to allow seller to put up for auction # No_Bind @@ -1623,8 +1635,11 @@ AuctionHouseBot.ItemsPerCycle = 200 ################################################################################################################### AuctionHouseBot.VendorItems = 0 +AuctionHouseBot.VendorTradeGoods = 0 AuctionHouseBot.LootItems = 1 +AuctionHouseBot.LootTradeGoods = 1 AuctionHouseBot.OtherItems = 0 +AuctionHouseBot.OtherTradeGoods = 0 AuctionHouseBot.No_Bind = 1 AuctionHouseBot.Bind_When_Picked_Up = 0 AuctionHouseBot.Bind_When_Equipped = 1 |