mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
39 lines
1.9 KiB
Diff
39 lines
1.9 KiB
Diff
--- a/net/minecraft/server/ArgumentBlock.java
|
|
+++ b/net/minecraft/server/ArgumentBlock.java
|
|
@@ -41,7 +41,7 @@
|
|
private static final Function<SuggestionsBuilder, CompletableFuture<Suggestions>> h = SuggestionsBuilder::buildFuture;
|
|
private final StringReader i;
|
|
private final boolean j;
|
|
- private final Map<IBlockState<?>, Comparable<?>> k = Maps.newHashMap();
|
|
+ private final Map<IBlockState<?>, Comparable<?>> k = Maps.newLinkedHashMap(); // CraftBukkit - stable
|
|
private final Map<String, String> l = Maps.newHashMap();
|
|
private MinecraftKey m = new MinecraftKey("");
|
|
private BlockStateList<Block, IBlockData> n;
|
|
@@ -217,7 +217,7 @@
|
|
Iterator iterator = iblockstate.d().iterator();
|
|
|
|
while (iterator.hasNext()) {
|
|
- T t0 = (Comparable) iterator.next();
|
|
+ T t0 = (T) iterator.next(); // CraftBukkit - decompile error
|
|
|
|
if (t0 instanceof Integer) {
|
|
suggestionsbuilder.suggest((Integer) t0);
|
|
@@ -486,7 +486,7 @@
|
|
Optional<T> optional = iblockstate.b(s);
|
|
|
|
if (optional.isPresent()) {
|
|
- this.o = (IBlockData) this.o.set(iblockstate, (Comparable) optional.get());
|
|
+ this.o = (IBlockData) this.o.set(iblockstate, (T) optional.get()); // CraftBukkit - decompile error
|
|
this.k.put(iblockstate, optional.get());
|
|
} else {
|
|
this.i.setCursor(i);
|
|
@@ -520,7 +520,7 @@
|
|
private static <T extends Comparable<T>> void a(StringBuilder stringbuilder, IBlockState<T> iblockstate, Comparable<?> comparable) {
|
|
stringbuilder.append(iblockstate.a());
|
|
stringbuilder.append('=');
|
|
- stringbuilder.append(iblockstate.a(comparable));
|
|
+ stringbuilder.append(iblockstate.a((T) comparable)); // CraftBukkit - decompile error
|
|
}
|
|
|
|
public CompletableFuture<Suggestions> a(SuggestionsBuilder suggestionsbuilder) {
|