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; } }