2022-12-07 18:08:55 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 30 Mar 2016 19:36:20 -0400
|
|
|
|
Subject: [PATCH] MC Dev fixes
|
|
|
|
|
|
|
|
|
2024-10-25 14:55:49 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/Util.java b/src/main/java/net/minecraft/Util.java
|
|
|
|
index 5b9ca3d968fd4884b1b7f2c06477ae00c09f202e..0842080f1840a83b34c2cc829dfddba78ba12157 100644
|
|
|
|
--- a/src/main/java/net/minecraft/Util.java
|
|
|
|
+++ b/src/main/java/net/minecraft/Util.java
|
|
|
|
@@ -533,7 +533,7 @@ public class Util {
|
|
|
|
public static <K extends Enum<K>, V> EnumMap<K, V> makeEnumMap(Class<K> enumClass, Function<K, V> mapper) {
|
|
|
|
EnumMap<K, V> enumMap = new EnumMap<>(enumClass);
|
|
|
|
|
|
|
|
- for (K enum_ : (Enum[])enumClass.getEnumConstants()) {
|
|
|
|
+ for (K enum_ : enumClass.getEnumConstants()) { // Paper - decompile error
|
|
|
|
enumMap.put(enum_, mapper.apply(enum_));
|
|
|
|
}
|
|
|
|
|
2024-04-27 08:17:58 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/commands/arguments/item/ItemInput.java b/src/main/java/net/minecraft/commands/arguments/item/ItemInput.java
|
2024-06-13 19:12:48 +02:00
|
|
|
index 643bb8860962ad691b11073f6dbf406bf7ec5fb1..9b8ec1fd158f6e51779be263fd56b9119d0d9bbb 100644
|
2024-04-27 08:17:58 +02:00
|
|
|
--- a/src/main/java/net/minecraft/commands/arguments/item/ItemInput.java
|
|
|
|
+++ b/src/main/java/net/minecraft/commands/arguments/item/ItemInput.java
|
2024-06-13 19:12:48 +02:00
|
|
|
@@ -78,6 +78,6 @@ public class ItemInput {
|
2024-04-27 08:17:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private String getItemName() {
|
|
|
|
- return this.item.unwrapKey().map(ResourceKey::location).orElseGet(() -> "unknown[" + this.item + "]").toString();
|
|
|
|
+ return this.item.unwrapKey().<Object>map(ResourceKey::location).orElseGet(() -> "unknown[" + this.item + "]").toString(); // Paper - decompile fix
|
|
|
|
}
|
|
|
|
}
|
2022-12-07 18:08:55 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/core/BlockPos.java b/src/main/java/net/minecraft/core/BlockPos.java
|
2024-10-22 19:28:57 +02:00
|
|
|
index 115cb27d3233863692553f8e07238c74b0fcb61c..83e7c141d947f8f8096fed1da716560494bc5c62 100644
|
2022-12-07 18:08:55 +01:00
|
|
|
--- a/src/main/java/net/minecraft/core/BlockPos.java
|
|
|
|
+++ b/src/main/java/net/minecraft/core/BlockPos.java
|
2024-10-22 19:28:57 +02:00
|
|
|
@@ -445,12 +445,12 @@ public class BlockPos extends Vec3i {
|
2022-12-07 18:08:55 +01:00
|
|
|
if (this.index == l) {
|
|
|
|
return this.endOfData();
|
|
|
|
} else {
|
|
|
|
- int i = this.index % i;
|
|
|
|
- int j = this.index / i;
|
|
|
|
- int k = j % j;
|
|
|
|
- int l = j / j;
|
|
|
|
+ int offsetX = this.index % i; // Paper - decomp fix
|
|
|
|
+ int u = this.index / i; // Paper - decomp fix
|
|
|
|
+ int offsetY = u % j; // Paper - decomp fix
|
|
|
|
+ int offsetZ = u / j; // Paper - decomp fix
|
2024-04-12 21:14:06 +02:00
|
|
|
this.index++;
|
2022-12-07 18:08:55 +01:00
|
|
|
- return this.cursor.set(startX + i, startY + k, startZ + l);
|
|
|
|
+ return this.cursor.set(startX + offsetX, startY + offsetY, startZ + offsetZ); // Paper - decomp fix
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2022-12-08 09:52:08 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/core/registries/BuiltInRegistries.java b/src/main/java/net/minecraft/core/registries/BuiltInRegistries.java
|
2024-10-22 19:28:57 +02:00
|
|
|
index 69993496b6328a963288e11d193d36bd7decfcba..f66a2154486b6d3b5873da043e51df91cd396c72 100644
|
2022-12-08 09:52:08 +01:00
|
|
|
--- a/src/main/java/net/minecraft/core/registries/BuiltInRegistries.java
|
|
|
|
+++ b/src/main/java/net/minecraft/core/registries/BuiltInRegistries.java
|
2024-10-22 19:28:57 +02:00
|
|
|
@@ -325,7 +325,7 @@ public class BuiltInRegistries {
|
|
|
|
Bootstrap.checkBootstrapCalled(() -> "registry " + key.location());
|
2024-04-12 21:14:06 +02:00
|
|
|
ResourceLocation resourceLocation = key.location();
|
|
|
|
LOADERS.put(resourceLocation, () -> initializer.run(registry));
|
2024-04-23 20:03:16 +02:00
|
|
|
- WRITABLE_REGISTRY.register((ResourceKey<WritableRegistry<?>>)key, registry, RegistrationInfo.BUILT_IN);
|
|
|
|
+ WRITABLE_REGISTRY.register((ResourceKey)key, registry, RegistrationInfo.BUILT_IN); // Paper - decompile fix
|
2022-12-08 09:52:08 +01:00
|
|
|
return registry;
|
|
|
|
}
|
|
|
|
|
2024-04-12 21:14:06 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/nbt/TagParser.java b/src/main/java/net/minecraft/nbt/TagParser.java
|
2024-04-23 20:03:16 +02:00
|
|
|
index a614e960fcd5958ad17b679eee8a8e6926f58e62..da101bca71f4710812621b98f0a0d8cab180346a 100644
|
2024-04-12 21:14:06 +02:00
|
|
|
--- a/src/main/java/net/minecraft/nbt/TagParser.java
|
|
|
|
+++ b/src/main/java/net/minecraft/nbt/TagParser.java
|
2024-04-23 20:03:16 +02:00
|
|
|
@@ -253,11 +253,11 @@ public class TagParser {
|
2023-12-12 07:08:51 +01:00
|
|
|
}
|
|
|
|
|
2024-04-12 21:14:06 +02:00
|
|
|
if (typeReader == ByteTag.TYPE) {
|
|
|
|
- list.add((T)((NumericTag)tag).getAsByte());
|
|
|
|
+ list.add((T)(Byte)((NumericTag)tag).getAsByte()); // Paper - decompile fix
|
|
|
|
} else if (typeReader == LongTag.TYPE) {
|
|
|
|
- list.add((T)((NumericTag)tag).getAsLong());
|
|
|
|
+ list.add((T)(Long)((NumericTag)tag).getAsLong()); // Paper - decompile fix
|
|
|
|
} else {
|
|
|
|
- list.add((T)((NumericTag)tag).getAsInt());
|
|
|
|
+ list.add((T)(Integer)((NumericTag)tag).getAsInt()); // Paper - decompile fix
|
2022-12-07 18:08:55 +01:00
|
|
|
}
|
|
|
|
|
2024-04-12 21:14:06 +02:00
|
|
|
if (!this.hasElementSeparator()) {
|
2024-10-25 14:55:49 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/resources/RegistryDataLoader.java b/src/main/java/net/minecraft/resources/RegistryDataLoader.java
|
|
|
|
index f4f1a99d53ffb953beb2a944f54d28fa6349fa29..a75f6fefdd72188fa8d16df2b5cbb34c4129f52d 100644
|
|
|
|
--- a/src/main/java/net/minecraft/resources/RegistryDataLoader.java
|
|
|
|
+++ b/src/main/java/net/minecraft/resources/RegistryDataLoader.java
|
|
|
|
@@ -74,7 +74,7 @@ import org.slf4j.Logger;
|
|
|
|
|
|
|
|
public class RegistryDataLoader {
|
|
|
|
private static final Logger LOGGER = LogUtils.getLogger();
|
|
|
|
- private static final Comparator<ResourceKey<?>> ERROR_KEY_COMPARATOR = Comparator.comparing(ResourceKey::registry).thenComparing(ResourceKey::location);
|
|
|
|
+ private static final Comparator<ResourceKey<?>> ERROR_KEY_COMPARATOR = Comparator.<ResourceKey<?>, ResourceLocation>comparing(ResourceKey::registry).thenComparing(ResourceKey::location); // Paper - decompile fix
|
|
|
|
private static final RegistrationInfo NETWORK_REGISTRATION_INFO = new RegistrationInfo(Optional.empty(), Lifecycle.experimental());
|
|
|
|
private static final Function<Optional<KnownPack>, RegistrationInfo> REGISTRATION_INFO_CACHE = Util.memoize(knownPacks -> {
|
|
|
|
Lifecycle lifecycle = knownPacks.map(KnownPack::isVanilla).map(vanilla -> Lifecycle.stable()).orElse(Lifecycle.experimental());
|
2022-12-07 18:08:55 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2024-10-22 19:28:57 +02:00
|
|
|
index 3fc0abef2c4e2c8ceb3b8c4f02c59700aa3d0803..8e16bc7da15824723f1d7d4bff87fac181978500 100644
|
2022-12-07 18:08:55 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2024-10-22 19:28:57 +02:00
|
|
|
@@ -2031,7 +2031,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2022-12-07 18:08:55 +01:00
|
|
|
PackRepository resourcepackrepository = this.packRepository;
|
|
|
|
|
|
|
|
Objects.requireNonNull(this.packRepository);
|
|
|
|
- return stream.map(resourcepackrepository::getPack).filter(Objects::nonNull).map(Pack::open).collect(ImmutableList.toImmutableList()); // CraftBukkit - decompile error
|
|
|
|
+ return stream.<Pack>map(resourcepackrepository::getPack).filter(Objects::nonNull).map(Pack::open).collect(ImmutableList.toImmutableList()); // CraftBukkit - decompile error // Paper - decompile error // todo: is this needed anymore?
|
|
|
|
}, this).thenCompose((immutablelist) -> {
|
|
|
|
MultiPackResourceManager resourcemanager = new MultiPackResourceManager(PackType.SERVER_DATA, immutablelist);
|
2024-10-22 19:28:57 +02:00
|
|
|
List<Registry.PendingTags<?>> list = TagLoader.loadTagsForExistingRegistries(resourcemanager, this.registries.compositeAccess());
|
2022-12-07 18:08:55 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/util/SortedArraySet.java b/src/main/java/net/minecraft/util/SortedArraySet.java
|
2024-04-12 21:14:06 +02:00
|
|
|
index 661a6274a800ca9b91bdb809d026972d23c3b263..ea72dcb064a35bc6245bc5c94d592efedd8faf41 100644
|
2022-12-07 18:08:55 +01:00
|
|
|
--- a/src/main/java/net/minecraft/util/SortedArraySet.java
|
|
|
|
+++ b/src/main/java/net/minecraft/util/SortedArraySet.java
|
|
|
|
@@ -28,7 +28,7 @@ public class SortedArraySet<T> extends AbstractSet<T> {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static <T extends Comparable<T>> SortedArraySet<T> create(int initialCapacity) {
|
|
|
|
- return new SortedArraySet<>(initialCapacity, Comparator.naturalOrder());
|
|
|
|
+ return new SortedArraySet<>(initialCapacity, Comparator.<T>naturalOrder()); // Paper - decompile fix
|
|
|
|
}
|
|
|
|
|
|
|
|
public static <T> SortedArraySet<T> create(Comparator<T> comparator) {
|
2024-10-25 14:55:49 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/Dolphin.java b/src/main/java/net/minecraft/world/entity/animal/Dolphin.java
|
|
|
|
index 33170f2f1d3f030fbf342e44a1baa109a34c31a7..dde1ccca98f58200910334160f0f79eb00dd2388 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/Dolphin.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/Dolphin.java
|
|
|
|
@@ -349,7 +349,7 @@ public class Dolphin extends AgeableWaterCreature {
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
- protected SoundEvent getDeathSound() {
|
|
|
|
+ public SoundEvent getDeathSound() { // Paper - decompile error
|
|
|
|
return SoundEvents.DOLPHIN_DEATH;
|
|
|
|
}
|
|
|
|
|
2024-04-26 20:42:17 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/monster/Pillager.java b/src/main/java/net/minecraft/world/entity/monster/Pillager.java
|
2024-10-22 19:28:57 +02:00
|
|
|
index cf025d7a4392213db3cf04e7ace3e2b166e710eb..3e8631c7bd1e7591051ca21c6ae7acd87d3c7529 100644
|
2024-04-26 20:42:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/Pillager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/Pillager.java
|
2024-10-22 19:28:57 +02:00
|
|
|
@@ -69,7 +69,7 @@ public class Pillager extends AbstractIllager implements CrossbowAttackMob, Inve
|
2024-04-26 20:42:17 +02:00
|
|
|
super.registerGoals();
|
|
|
|
this.goalSelector.addGoal(0, new FloatGoal(this));
|
2024-10-22 19:28:57 +02:00
|
|
|
this.goalSelector.addGoal(1, new AvoidEntityGoal<>(this, Creaking.class, 8.0F, 1.0D, 1.2D));
|
2024-04-26 20:42:17 +02:00
|
|
|
- this.goalSelector.addGoal(2, new Raider.HoldGroundAttackGoal(this, this, 10.0F));
|
|
|
|
+ this.goalSelector.addGoal(2, new Raider.HoldGroundAttackGoal(this, 10.0F)); // Paper - decomp fix
|
|
|
|
this.goalSelector.addGoal(3, new RangedCrossbowAttackGoal<>(this, 1.0D, 8.0F));
|
|
|
|
this.goalSelector.addGoal(8, new RandomStrollGoal(this, 0.6D));
|
|
|
|
this.goalSelector.addGoal(9, new LookAtPlayerGoal(this, Player.class, 15.0F, 1.0F));
|
2024-06-14 18:02:15 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/status/ChunkStatusTasks.java b/src/main/java/net/minecraft/world/level/chunk/status/ChunkStatusTasks.java
|
2024-10-22 19:28:57 +02:00
|
|
|
index 5fa94fd51027901591e40cabdacfd61d16a58585..3f552ee8f90566edddb5943311a14309e4bebb61 100644
|
2024-06-14 18:02:15 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/status/ChunkStatusTasks.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/status/ChunkStatusTasks.java
|
2024-10-22 19:28:57 +02:00
|
|
|
@@ -151,7 +151,7 @@ public class ChunkStatusTasks {
|
|
|
|
if (protochunk instanceof ImposterProtoChunk protochunkextension) {
|
|
|
|
chunk1 = protochunkextension.getWrapped();
|
2024-06-14 18:02:15 +02:00
|
|
|
} else {
|
|
|
|
- chunk1 = new LevelChunk(worldserver, protochunk, (chunk1) -> {
|
|
|
|
+ chunk1 = new LevelChunk(worldserver, protochunk, ($) -> { // Paper - decompile fix
|
|
|
|
ChunkStatusTasks.postLoadProtoChunk(worldserver, protochunk.getEntities());
|
|
|
|
});
|
|
|
|
generationchunkholder.replaceProtoChunk(new ImposterProtoChunk(chunk1, false));
|