SteamWar/SpigotCore
Archiviert
13
0

Update CommonCore, Testfix waterlogged Hider
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Lixfel 2023-03-10 12:17:34 +01:00
Ursprung d35ef19ba3
Commit 6917be4c70
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

@ -1 +1 @@
Subproject commit 36bb4db5152940eb9b190552607c23079f6abee6
Subproject commit 7474478489da42735a32e84b3f91144c64847e30

Datei anzeigen

@ -40,7 +40,7 @@ public class BlockIds14 implements BlockIds {
private static final Reflection.MethodInvoker getStates = Reflection.getTypedMethod(TechHider.block, null, blockStateList);
private static final Reflection.MethodInvoker getStateList = Reflection.getTypedMethod(blockStateList, null, ImmutableList.class);
private static final Object water = Reflection.getTypedMethod(fluidTypeFlowing, null, fluid).invoke(Reflection.getField(Reflection.getClass("{nms.world.level.material}.FluidTypes"), fluidTypeFlowing, 1).get(null));
private static final Object water = Reflection.getTypedMethod(fluidTypeFlowing, null, fluid, boolean.class).invoke(Reflection.getField(Reflection.getClass("{nms.world.level.material}.FluidTypes"), fluidTypeFlowing, 1).get(null), false);
private static final Iterable<?> registryBlockId = (Iterable<?>) Reflection.getField(TechHider.block, Reflection.getClass("{nms.core}.RegistryBlockID"), 0).get(null);
private static final Reflection.MethodInvoker getFluid = Reflection.getTypedMethod(TechHider.iBlockData, null, fluid);
@Override