mirror of
https://github.com/BG-Software-LLC/WildLoaders.git
synced 2025-02-18 01:51:22 +01:00
Fixed chunk loaders not working properly in 1.19 (#48)
This commit is contained in:
parent
b96da57311
commit
197926b0c9
@ -139,7 +139,7 @@ public final class NMSAdapter_v1_19_R1 implements NMSAdapter {
|
|||||||
|
|
||||||
ChunkCoordIntPair chunkCoords = getPos(chunk);
|
ChunkCoordIntPair chunkCoords = getPos(chunk);
|
||||||
|
|
||||||
setChunkForced(world, chunkCoords.c, chunkCoords.d, true);
|
setChunkForced(world, chunkCoords.e, chunkCoords.f, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
return tileEntityChunkLoader;
|
return tileEntityChunkLoader;
|
||||||
@ -169,7 +169,7 @@ public final class NMSAdapter_v1_19_R1 implements NMSAdapter {
|
|||||||
|
|
||||||
ChunkCoordIntPair chunkCoords = getPos(chunk);
|
ChunkCoordIntPair chunkCoords = getPos(chunk);
|
||||||
|
|
||||||
setChunkForced(world, chunkCoords.c, chunkCoords.d, false);
|
setChunkForced(world, chunkCoords.e, chunkCoords.f, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user