From 8a9bd6504c786bf306fd6fd6d06013f13f3fe69f Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sat, 25 Apr 2020 00:06:16 -0400 Subject: [PATCH] Core/AuctionHouse: Set default AllowTwoSide.Interaction.Auction to enabled Port From (https://github.com/TrinityCore/TrinityCore/commit/2c1c04a8f643d61bf29185f96d16fe4614e8e3ce) --- Source/Game/Server/WorldConfig.cs | 2 +- Source/WorldServer/WorldServer.conf.dist | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Game/Server/WorldConfig.cs b/Source/Game/Server/WorldConfig.cs index 0321a5f8b..457fb19e8 100644 --- a/Source/Game/Server/WorldConfig.cs +++ b/Source/Game/Server/WorldConfig.cs @@ -312,7 +312,7 @@ namespace Game Values[WorldCfg.AllowTwoSideInteractionChannel] = GetDefaultValue("AllowTwoSide.Interaction.Channel", false); Values[WorldCfg.AllowTwoSideInteractionGroup] = GetDefaultValue("AllowTwoSide.Interaction.Group", false); Values[WorldCfg.AllowTwoSideInteractionGuild] = GetDefaultValue("AllowTwoSide.Interaction.Guild", false); - Values[WorldCfg.AllowTwoSideInteractionAuction] = GetDefaultValue("AllowTwoSide.Interaction.Auction", false); + Values[WorldCfg.AllowTwoSideInteractionAuction] = GetDefaultValue("AllowTwoSide.Interaction.Auction", true); Values[WorldCfg.AllowTwoSideTrade] = GetDefaultValue("AllowTwoSide.Trade", false); Values[WorldCfg.StrictPlayerNames] = GetDefaultValue("StrictPlayerNames", 0); Values[WorldCfg.StrictCharterNames] = GetDefaultValue("StrictCharterNames", 0); diff --git a/Source/WorldServer/WorldServer.conf.dist b/Source/WorldServer/WorldServer.conf.dist index d3940acd1..7b9d60992 100644 --- a/Source/WorldServer/WorldServer.conf.dist +++ b/Source/WorldServer/WorldServer.conf.dist @@ -1412,10 +1412,10 @@ AllowTwoSide.Interaction.Guild = 0 # # AllowTwoSide.Interaction.Auction # Description: Allow auctions between factions. -# Default: 0 - (Disabled) -# 1 - (Enabled) +# Default: 1 - (Enabled) +# 0 - (Disabled) -AllowTwoSide.Interaction.Auction = 0 +AllowTwoSide.Interaction.Auction = 1 # # AllowTwoSide.Trade