File tree 2 files changed +3
-3
lines changed
patches/sources/net/minecraft/world/entity/monster/piglin
src/main/resources/data/minecraft/datapacks/paper
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 29
29
this.setCannotHunt(compound.getBooleanOr("CannotHunt", false));
30
30
this.readInventoryFromTag(compound, this.registryAccess());
31
31
+ // 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 );
34
34
+ // CraftBukkit end
35
35
}
36
36
Original file line number Diff line number Diff line change 1
1
{
2
2
"pack" : {
3
3
"description" : " Built-in Paper Datapack" ,
4
- "pack_format" : 70
4
+ "pack_format" : 71
5
5
}
6
6
}
You can’t perform that action at this time.
0 commit comments