
Suggestions for more bug fixes.
Kichura opened this issue ยท 6 comments
Suggestion details:
-
Is it possible to have the dimensions bug fixed so that worlds do not get wiped when no worlds are present/worlds are upgraded?
-
Is it possible to have the StackOverflow bug fixed when attempting to debug advancements?
-
Is it possible to have the maps fixed so that colors of them become faked if nulled?
Additional infos:
I may be aware that these are not necessarily annoying but are helpful for fixing server-related bugs when using fabric as server software.
Unfortunately, server fixes are outside the scope of this mod. This mod is client-side only.
I'm not familiar with any of the bugs you have listed, so I'm not sure if any of them can be fixed client-side. If you could provide links to the relevant reports on the bug tracker that'd be great.
Is the "nulled maps" bug still an issue in 1.18.1? It seems to be fixed in vanilla:
private static MapColor getUnchecked(int id) {
MapColor mapColor = COLORS[id];
return mapColor != null ? mapColor : CLEAR;
}
The code checks if the map color is unknown, and uses a transparent color in that case.
Is the "nulled maps" bug still an issue in 1.18.1? It seems to be fixed in vanilla:
private static MapColor getUnchecked(int id) { MapColor mapColor = COLORS[id]; return mapColor != null ? mapColor : CLEAR; }The code checks if the map color is unknown, and uses a transparent color in that case.
Seems to be fixed in 1.18.1 as explained in the maps github but in prior versions, this was a slight problem.