From 66a96f68b7937aa1a60ee97ea7fe6891e6c3827b Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Mon, 24 Oct 2022 11:09:09 +0200 Subject: [PATCH] Remove leftover debug info --- Pal.Client/ConfigWindow.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Pal.Client/ConfigWindow.cs b/Pal.Client/ConfigWindow.cs index 19f9b9a..6bc00aa 100644 --- a/Pal.Client/ConfigWindow.cs +++ b/Pal.Client/ConfigWindow.cs @@ -128,14 +128,6 @@ namespace Pal.Client ImGui.Text($"{currentFloorMarkers.Count(x => x != null && x.Type == Palace.ObjectType.Trap)} known traps"); if (_showHoard) ImGui.Text($"{currentFloorMarkers.Count(x => x != null && x.Type == Palace.ObjectType.Hoard)} known hoard coffers"); - - foreach (var m in currentFloorMarkers) - { - var dup = currentFloorMarkers.FirstOrDefault(x => !ReferenceEquals(x, m) && x.GetHashCode() == m.GetHashCode()); - if (dup != null) - ImGui.Text($"{m.Type} {m.Position} // {dup.Type} {dup.Position}"); - - } } else ImGui.Text("Could not query current trap/coffer count.");