mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 08:32:07 -07:00
Fix setCarryingChest not resizing horse inventory
This commit is contained in:
@@ -16,8 +16,12 @@
|
||||
|
||||
public EntityHorseAbstract(World world) {
|
||||
super(world);
|
||||
@@ -214,7 +216,7 @@
|
||||
protected void dx() {
|
||||
@@ -211,10 +213,10 @@
|
||||
return 2;
|
||||
}
|
||||
|
||||
- protected void dx() {
|
||||
+ public void dx() { // PAIL: protected-> public, rename
|
||||
InventoryHorseChest inventoryhorsechest = this.inventoryChest;
|
||||
|
||||
- this.inventoryChest = new InventoryHorseChest("HorseChest", this.di());
|
||||
|
Reference in New Issue
Block a user