Return non-fastutil type

This commit is contained in:
LeoDog896 2021-01-15 13:08:55 -05:00
parent 12adb9a965
commit 0c1b93a82b
3 changed files with 3 additions and 3 deletions

View File

@ -486,7 +486,7 @@ public final class MinecraftServer {
player.refreshVisibleChunks(playerChunk);
}
});
}
}
}

View File

@ -197,7 +197,7 @@ public abstract class Chunk implements Viewable, DataContainer {
* @return the block entities in this chunk
*/
@NotNull
public abstract IntSet getBlockEntities();
public abstract Set<Integer> getBlockEntities();
/**
* Gets the last time that this chunk changed.

View File

@ -193,7 +193,7 @@ public class DynamicChunk extends Chunk {
@NotNull
@Override
public IntSet getBlockEntities() {
public Set<Integer> getBlockEntities() {
return blockEntities;
}