We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e05d9eb commit ae8f941Copy full SHA for ae8f941
Minimap.lua
@@ -48,6 +48,17 @@ function RemoveMinimapIfExist(targetBp)
48
return true
49
end
50
51
+
52
+ for i, val in ipairs(OmniMinimapPanes) do
53
+ if targetBp == val then
54
+ OmniMinimapPanes[i]:Quit()
55
+ table.remove(OmniMinimapTargetPanes, i)
56
+ table.remove(OmniMinimapPanes, i)
57
+ table.remove(OmniMinimapRecords, i)
58
+ return true
59
+ end
60
61
62
return false
63
64
0 commit comments