mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 19:55:52 -07:00
Some more compilation issues
This commit is contained in:
@@ -64,7 +64,7 @@
|
||||
+
|
||||
+ public static Set<Chunk> getSentChunks(final ServerPlayer player) {
|
||||
+ final ObjectSet<Chunk> chunks = new ObjectOpenHashSet<>();
|
||||
+ final World world = player.serverLevel().getWorld();
|
||||
+ final World world = player.level().getWorld();
|
||||
+ player.getChunkTrackingView().forEach(pos -> {
|
||||
+ final org.bukkit.Chunk chunk = world.getChunkAt(pos.longKey);
|
||||
+ chunks.add(chunk);
|
||||
|
Reference in New Issue
Block a user