SteamWar/FightSystem
Archiviert
13
1

Multiversion simplification & 1.19.3 compatibility #375

Zusammengeführt
Lixfel hat 3 Commits von 1.19.3 nach master 2023-03-03 16:19:29 +01:00 zusammengeführt
Nur Änderungen aus Commit 410c9fd3d0 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -33,7 +33,7 @@ import java.util.stream.StreamSupport;
public class CraftbukkitWrapper18 implements CraftbukkitWrapper {
private static final Reflection.MethodInvoker getWorld = Reflection.getTypedMethod(Reflection.getClass("{obc}.CraftWorld"), "getHandle", net.minecraft.world.level.World.class);
private static final Reflection.MethodInvoker getWorld = Reflection.getMethod(Reflection.getClass("{obc}.CraftWorld"), "getHandle");
private static final Reflection.MethodInvoker getChunk = Reflection.getTypedMethod(net.minecraft.world.level.World.class, null, Chunk.class, int.class, int.class);
private static final Reflection.MethodInvoker getChunkSections = Reflection.getTypedMethod(Chunk.class, null, ChunkSection[].class);
private ChunkSection[] getChunkSections(World world, int x, int z) {