-
-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
Minecraft Version
1.21.1/10/11
Moonrise Version
0.8.0-beta.4
Mod Loader
Both (NeoForge and Fabric)
Logs and Crash Reports
java.lang.NullPointerException: Cannot invoke "it.unimi.dsi.fastutil.longs.Long2ObjectLinkedOpenHashMap.values()" because the return value of "journeymap.common.mixin.server.ChunkMapAccessor.getChunks()" is null
Additional Context
I use this accessor to get loaded chunks to display all loaded chunks for admins on JourneyMap.
This mixin is a problem with your mod since you null the chunks for this method's return value.
@Mixin(ChunkMap.class)
public interface ChunkMapAccessor
{
@Invoker("getChunks")
Iterable<ChunkHolder> invokeGetChunks();
}