2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/level/GeneratorAccess.java
|
|
|
|
+++ b/net/minecraft/world/level/GeneratorAccess.java
|
2021-11-21 23:00:00 +01: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-24 22:00:00 +01:00
|
|
|
return new NextTickListEntry<>(t0, blockposition, this.getLevelData().getGameTime() + (long) i, ticklistpriority, this.nextSubTickCount());
|
2021-11-21 23:00:00 +01: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-24 22:00:00 +01:00
|
|
|
return new NextTickListEntry<>(t0, blockposition, this.getLevelData().getGameTime() + (long) i, this.nextSubTickCount());
|
2021-11-21 23:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@@ -102,4 +102,6 @@
|
|
|
|
default void gameEvent(@Nullable Entity entity, GameEvent gameevent, Entity entity1) {
|
|
|
|
this.gameEvent(entity, gameevent, entity1.blockPosition());
|
2020-08-11 23:00:00 +02:00
|
|
|
}
|
|
|
|
+
|
2021-03-15 23:00:00 +01:00
|
|
|
+ net.minecraft.server.level.WorldServer getMinecraftWorld(); // CraftBukkit
|
2020-08-11 23:00:00 +02:00
|
|
|
}
|