Package | Description |
---|---|
net.minecraft.client.world | |
net.minecraft.world | |
net.minecraft.world.chunk | |
net.minecraft.world.gen | |
net.minecraft.world.server |
Modifier and Type | Method and Description |
---|---|
ITickList<Block> |
ClientWorld.getPendingBlockTicks() |
ITickList<Fluid> |
ClientWorld.getPendingFluidTicks() |
Modifier and Type | Class and Description |
---|---|
class |
EmptyTickList<T> |
class |
SerializableTickList<T> |
class |
WorldGenTickList<T> |
Modifier and Type | Field and Description |
---|---|
private java.util.function.Function<BlockPos,ITickList<T>> |
WorldGenTickList.tickListProvider |
Modifier and Type | Method and Description |
---|---|
ITickList<Block> |
IWorld.getPendingBlockTicks() |
ITickList<Fluid> |
IWorld.getPendingFluidTicks() |
Constructor and Description |
---|
WorldGenTickList(java.util.function.Function<BlockPos,ITickList<T>> tickListProviderIn) |
Modifier and Type | Class and Description |
---|---|
class |
ChunkPrimerTickList<T> |
Modifier and Type | Field and Description |
---|---|
private ITickList<Block> |
Chunk.blocksToBeTicked |
private ITickList<Fluid> |
Chunk.fluidsToBeTicked |
Modifier and Type | Method and Description |
---|---|
ITickList<Block> |
Chunk.getBlocksToBeTicked() |
ITickList<Block> |
IChunk.getBlocksToBeTicked() |
ITickList<Fluid> |
Chunk.getFluidsToBeTicked() |
ITickList<Fluid> |
IChunk.getFluidsToBeTicked() |
Modifier and Type | Method and Description |
---|---|
void |
ChunkPrimerTickList.postProcess(ITickList<T> tickList,
java.util.function.Function<BlockPos,T> func) |
Constructor and Description |
---|
Chunk(World worldIn,
ChunkPos chunkPosIn,
BiomeContainer biomeContainerIn,
UpgradeData upgradeDataIn,
ITickList<Block> tickBlocksIn,
ITickList<Fluid> tickFluidsIn,
long inhabitedTimeIn,
ChunkSection[] sectionsIn,
java.util.function.Consumer<Chunk> postLoadConsumerIn) |
Chunk(World worldIn,
ChunkPos chunkPosIn,
BiomeContainer biomeContainerIn,
UpgradeData upgradeDataIn,
ITickList<Block> tickBlocksIn,
ITickList<Fluid> tickFluidsIn,
long inhabitedTimeIn,
ChunkSection[] sectionsIn,
java.util.function.Consumer<Chunk> postLoadConsumerIn) |
Modifier and Type | Field and Description |
---|---|
private ITickList<Block> |
WorldGenRegion.pendingBlockTickList |
private ITickList<Fluid> |
WorldGenRegion.pendingFluidTickList |
Modifier and Type | Method and Description |
---|---|
ITickList<Block> |
WorldGenRegion.getPendingBlockTicks() |
ITickList<Fluid> |
WorldGenRegion.getPendingFluidTicks() |
Modifier and Type | Class and Description |
---|---|
class |
ServerTickList<T> |