The NormalMarker::searchMarker function runs into an endless loop because it checks if it already added a marker with List.contains.
I guess because BlockPos doesn't implement equals (anymore ?) this doesn't work and it endlessly recurses.
I "fixed" it by simple switching to this ugly piece of code:
The NormalMarker::searchMarker function runs into an endless loop because it checks if it already added a marker with List.contains. I guess because BlockPos doesn't implement equals (anymore ?) this doesn't work and it endlessly recurses. I "fixed" it by simple switching to this ugly piece of code:
(Last time i wrote java is about 10 years plus i have no clue about mc modding, so sry if i messed something up)