Update to Minecraft 1.20.2
By: md_5 <git@md-5.net>
This commit is contained in:
parent
193398c0ff
commit
8a3c8cfcd4
238 changed files with 2448 additions and 2344 deletions
|
@ -0,0 +1,20 @@
|
|||
--- a/net/minecraft/advancements/AdvancementTree.java
|
||||
+++ b/net/minecraft/advancements/AdvancementTree.java
|
||||
@@ -68,7 +68,7 @@
|
||||
}
|
||||
|
||||
public void addAll(Collection<AdvancementHolder> collection) {
|
||||
- ArrayList arraylist = new ArrayList(collection);
|
||||
+ ArrayList<AdvancementHolder> arraylist = new ArrayList(collection); // CraftBukkit - decompile error
|
||||
|
||||
while (!arraylist.isEmpty()) {
|
||||
if (!arraylist.removeIf(this::tryInsert)) {
|
||||
@@ -77,7 +77,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- AdvancementTree.LOGGER.info("Loaded {} advancements", this.nodes.size());
|
||||
+ // AdvancementTree.LOGGER.info("Loaded {} advancements", this.nodes.size()); // CraftBukkit - moved to AdvancementDataWorld#reload
|
||||
}
|
||||
|
||||
private boolean tryInsert(AdvancementHolder advancementholder) {
|
Loading…
Add table
Add a link
Reference in a new issue