Hi all.
I was able to verify that the icons are not shown on the map and the solution is very simple.You only have to modify line 51 in oxide/plugins/LustyMap.cs
Line 51 contains the following:
static string dataDirectory = $"file://{Interface.Oxide.DataDirectory}{Path.DirectorySeparatorChar}LustyMap{Path.DirectorySeparatorChar}";
It has to be replaced by:
static string dataDirectory = $"file://{Interface.Oxide.DataDirectory}LustyMap{Path.DirectorySeparatorChar}";
I was able to verify that the icons are not shown on the map and the solution is very simple.You only have to modify line 51 in oxide/plugins/LustyMap.cs
Line 51 contains the following:
static string dataDirectory = $"file://{Interface.Oxide.DataDirectory}{Path.DirectorySeparatorChar}LustyMap{Path.DirectorySeparatorChar}";
It has to be replaced by:
static string dataDirectory = $"file://{Interface.Oxide.DataDirectory}LustyMap{Path.DirectorySeparatorChar}";