mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
fix: ClassCastException on spigot (#2751)
fix: ClassCastException on spigot due to method change
This commit is contained in:
parent
e9866fb4d7
commit
7318685613
@ -345,10 +345,8 @@ public final class PaperweightPlatformAdapter extends NMSAdapter {
|
|||||||
.getChunkSource()
|
.getChunkSource()
|
||||||
.getChunkAtIfLoadedImmediately(chunkX, chunkZ);
|
.getChunkAtIfLoadedImmediately(chunkX, chunkZ);
|
||||||
} else {
|
} else {
|
||||||
levelChunk = ((Optional<LevelChunk>) ((Either) chunkHolder
|
levelChunk = chunkHolder.getTickingChunkFuture()
|
||||||
.getTickingChunkFuture() // method is not present with new paper chunk system
|
.getNow(ChunkHolder.UNLOADED_LEVEL_CHUNK).orElse(null);
|
||||||
.getNow(ChunkHolder.UNLOADED_LEVEL_CHUNK)).left())
|
|
||||||
.orElse(null);
|
|
||||||
}
|
}
|
||||||
if (levelChunk == null) {
|
if (levelChunk == null) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user