Skip to content

Commit 67cc0e5

Browse files
committed
bump built-in datapack version
1 parent a776d7a commit 67cc0e5

File tree

2 files changed

+3
-3
lines changed
  • paper-server

2 files changed

+3
-3
lines changed

paper-server/patches/sources/net/minecraft/world/entity/monster/piglin/Piglin.java.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
this.setCannotHunt(compound.getBooleanOr("CannotHunt", false));
3030
this.readInventoryFromTag(compound, this.registryAccess());
3131
+ // CraftBukkit start
32-
+ compound.read("Bukkit.BarterList", ITEM_SET_CODEC).ifPresent(items -> this.allowedBarterItems = items);
33-
+ compound.read("Bukkit.InterestList", ITEM_SET_CODEC).ifPresent(items -> this.interestItems = items);
32+
+ this.allowedBarterItems = compound.read("Bukkit.BarterList", ITEM_SET_CODEC).orElseGet(java.util.HashSet::new);
33+
+ this.interestItems = compound.read("Bukkit.InterestList", ITEM_SET_CODEC).orElseGet(java.util.HashSet::new);
3434
+ // CraftBukkit end
3535
}
3636

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
33
"description": "Built-in Paper Datapack",
4-
"pack_format": 70
4+
"pack_format": 71
55
}
66
}

0 commit comments

Comments
 (0)