@@ -1,8 +1,22 @@
|
||||
--- a/net/minecraft/world/level/GeneratorAccess.java
|
||||
+++ b/net/minecraft/world/level/GeneratorAccess.java
|
||||
@@ -77,4 +77,6 @@
|
||||
default void a(@Nullable Entity entity, GameEvent gameevent, Entity entity1) {
|
||||
this.a(entity, gameevent, entity1.getChunkCoordinates());
|
||||
@@ -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
|
||||
return new NextTickListEntry(t0, blockposition, this.getLevelData().getGameTime() + (long) i, ticklistpriority, this.nextSubTickCount());
|
||||
}
|
||||
|
||||
- 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
|
||||
return new NextTickListEntry(t0, blockposition, this.getLevelData().getGameTime() + (long) i, this.nextSubTickCount());
|
||||
}
|
||||
|
||||
@@ -102,4 +102,6 @@
|
||||
default void gameEvent(@Nullable Entity entity, GameEvent gameevent, Entity entity1) {
|
||||
this.gameEvent(entity, gameevent, entity1.blockPosition());
|
||||
}
|
||||
+
|
||||
+ net.minecraft.server.level.WorldServer getMinecraftWorld(); // CraftBukkit
|
||||
|
||||
Reference in New Issue
Block a user