2021-03-16 09:00:00 +11:00
|
|
|
--- a/net/minecraft/world/level/GeneratorAccess.java
|
|
|
|
+++ b/net/minecraft/world/level/GeneratorAccess.java
|
2021-11-22 09:00:00 +11:00
|
|
|
@@ -31,11 +31,11 @@
|
|
|
|
|
|
|
|
LevelTickAccess<Block> getBlockTicks();
|
|
|
|
|
|
|
|
- private default <T> NextTickListEntry<T> createTick(BlockPosition blockposition, T t0, int i, TickListPriority ticklistpriority) {
|
|
|
|
+ default <T> NextTickListEntry<T> createTick(BlockPosition blockposition, T t0, int i, TickListPriority ticklistpriority) { // CraftBukkit - decompile error
|
2021-11-25 08:00:00 +11:00
|
|
|
return new NextTickListEntry<>(t0, blockposition, this.getLevelData().getGameTime() + (long) i, ticklistpriority, this.nextSubTickCount());
|
2021-11-22 09:00:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
- private default <T> NextTickListEntry<T> createTick(BlockPosition blockposition, T t0, int i) {
|
|
|
|
+ default <T> NextTickListEntry<T> createTick(BlockPosition blockposition, T t0, int i) { // CraftBukkit - decompile error
|
2021-11-25 08:00:00 +11:00
|
|
|
return new NextTickListEntry<>(t0, blockposition, this.getLevelData().getGameTime() + (long) i, this.nextSubTickCount());
|
2021-11-22 09:00:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@@ -102,4 +102,6 @@
|
|
|
|
default void gameEvent(@Nullable Entity entity, GameEvent gameevent, Entity entity1) {
|
|
|
|
this.gameEvent(entity, gameevent, entity1.blockPosition());
|
2020-08-12 07:00:00 +10:00
|
|
|
}
|
|
|
|
+
|
2021-03-16 09:00:00 +11:00
|
|
|
+ net.minecraft.server.level.WorldServer getMinecraftWorld(); // CraftBukkit
|
2020-08-12 07:00:00 +10:00
|
|
|
}
|