More var name fixes
This commit is contained in:
@@ -13,9 +13,9 @@ public class CraftBlockInventoryHolder implements BlockInventoryHolder {
|
||||
private final Block block;
|
||||
private final Inventory inventory;
|
||||
|
||||
public CraftBlockInventoryHolder(LevelAccessor world, BlockPos pos, Container inv) {
|
||||
this.block = CraftBlock.at(world, pos);
|
||||
this.inventory = new CraftInventory(inv);
|
||||
public CraftBlockInventoryHolder(LevelAccessor levelAccessor, BlockPos pos, Container container) {
|
||||
this.block = CraftBlock.at(levelAccessor, pos);
|
||||
this.inventory = new CraftInventory(container);
|
||||
}
|
||||
// Paper start - Add missing InventoryHolders
|
||||
public CraftBlockInventoryHolder(net.minecraft.world.inventory.ContainerLevelAccess levelAccess, Inventory inventory) {
|
||||
|
||||
Reference in New Issue
Block a user