Update to Minecraft 1.19

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2022-06-08 02:00:00 +10:00
parent 91d9aa9a89
commit 25f3b50f6b
332 changed files with 3628 additions and 2559 deletions

View File

@@ -1,18 +0,0 @@
--- a/net/minecraft/world/level/block/state/properties/BlockStateInteger.java
+++ b/net/minecraft/world/level/block/state/properties/BlockStateInteger.java
@@ -9,9 +9,15 @@
public class BlockStateInteger extends IBlockState<Integer> {
private final ImmutableSet<Integer> values;
+ // CraftBukkit start
+ public final int min;
+ public final int max;
protected BlockStateInteger(String s, int i, int j) {
super(s, Integer.class);
+ this.min = i;
+ this.max = j;
+ // CraftBukkit end
if (i < 0) {
throw new IllegalArgumentException("Min value of " + s + " must be 0 or greater");
} else if (j <= i) {