Not showing images in the icons directorySolved
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 don't see why that would fix your issue, perhaps just a coincidence. Pretty sure Interface.Oxide.DataDirectory does not have a trailing slash be default, so your change would result in: "oxide/dataLustyMap/", instead of the original: "oxide/data/LustyMap/"
It turns out that the original definition did not work for me and with this change I indicated I could solve it. I thought that someone else could have the same problem as me, that's why I shared my experience :)

Merged post

Ok I think I know what happened. I use the free version of Rust Server Manager, which I think is installing an old version of Oxide. Surely that is the real problem.
Locked automatically