From 8b976e7537d6a91bd0405c9258d6b61d4901c2a0 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 15 Jun 2022 18:17:43 -0400 Subject: [PATCH] Scripts/Gossip: Fixed money not being removed when enabling/disabling experience gains Port From (https://github.com/TrinityCore/TrinityCore/commit/daafde7518f2b0df78d1974e06144662b27e3297) --- Source/Scripts/World/NpcSpecial.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Scripts/World/NpcSpecial.cs b/Source/Scripts/World/NpcSpecial.cs index 992864095..871d9e6d3 100644 --- a/Source/Scripts/World/NpcSpecial.cs +++ b/Source/Scripts/World/NpcSpecial.cs @@ -1431,7 +1431,6 @@ namespace Scripts.World.NpcSpecial public override bool OnGossipSelect(Player player, uint menuId, uint gossipListId) { uint action = player.PlayerTalkClass.GetGossipOptionAction(gossipListId); - player.PlayerTalkClass.ClearMenus(); switch (action) { @@ -1444,7 +1443,7 @@ namespace Scripts.World.NpcSpecial } player.PlayerTalkClass.SendCloseGossip(); - return true; + return false; } }