Add missing InventoryType
Upstream did not add a DECORATED_POT inventory type
This commit is contained in:
@@ -529,6 +529,10 @@ public class CraftInventory implements Inventory {
|
|||||||
return InventoryType.COMPOSTER;
|
return InventoryType.COMPOSTER;
|
||||||
} else if (this.inventory instanceof JukeboxBlockEntity) {
|
} else if (this.inventory instanceof JukeboxBlockEntity) {
|
||||||
return InventoryType.JUKEBOX;
|
return InventoryType.JUKEBOX;
|
||||||
|
// Paper start
|
||||||
|
} else if (this.inventory instanceof net.minecraft.world.level.block.entity.DecoratedPotBlockEntity) {
|
||||||
|
return org.bukkit.event.inventory.InventoryType.DECORATED_POT;
|
||||||
|
// Paper end
|
||||||
} else {
|
} else {
|
||||||
return InventoryType.CHEST;
|
return InventoryType.CHEST;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user