diff --git a/block/storage/BlockChest.java b/block/storage/BlockChest.java index 37c2de43..be336b1c 100644 --- a/block/storage/BlockChest.java +++ b/block/storage/BlockChest.java @@ -51,7 +51,7 @@ public class BlockChest extends AEBaseBlock ItemStack cell = tg.getStackInSlot( 1 ); if ( cell != null ) { - ICellHandler ch = AEApi.instance().registries().cell().getHander( cell ); + ICellHandler ch = AEApi.instance().registries().cell().getHandler( cell ); tg.openGui( p, ch, cell, side ); } diff --git a/client/render/blocks/RenderMEChest.java b/client/render/blocks/RenderMEChest.java index 91cf3d72..142a01f1 100644 --- a/client/render/blocks/RenderMEChest.java +++ b/client/render/blocks/RenderMEChest.java @@ -112,7 +112,7 @@ public class RenderMEChest extends BaseBlockRender Tessellator.instance.setColorOpaque_I( 0xffffff ); renderer.setRenderBounds( 0, 0, 0, 1, 1, 1 ); - ICellHandler ch = AEApi.instance().registries().cell().getHander( sp.getStorageType() ); + ICellHandler ch = AEApi.instance().registries().cell().getHandler( sp.getStorageType() ); IIcon ico = ch == null ? null : ch.getTopTexture(); renderFace( x, y, z, imb, ico == null ? ExtraTextures.MEChest.getIcon() : ico, renderer, up ); diff --git a/core/features/registries/CellRegistry.java b/core/features/registries/CellRegistry.java index dd33a13d..24e848b1 100644 --- a/core/features/registries/CellRegistry.java +++ b/core/features/registries/CellRegistry.java @@ -37,7 +37,7 @@ public class CellRegistry implements ICellRegistry } @Override - public ICellHandler getHander(ItemStack is) + public ICellHandler getHandler(ItemStack is) { if ( is == null ) return null; diff --git a/tile/storage/TileChest.java b/tile/storage/TileChest.java index 9263a435..1adfec8f 100644 --- a/tile/storage/TileChest.java +++ b/tile/storage/TileChest.java @@ -363,7 +363,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan if ( is != null ) { isCached = true; - cellHandler = AEApi.instance().registries().cell().getHander( is ); + cellHandler = AEApi.instance().registries().cell().getHandler( is ); if ( cellHandler != null ) { double power = 1.0; @@ -553,7 +553,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan return (state >> (slot * 3)) & 3; ItemStack cell = inv.getStackInSlot( 1 ); - ICellHandler ch = AEApi.instance().registries().cell().getHander( cell ); + ICellHandler ch = AEApi.instance().registries().cell().getHandler( cell ); if ( ch != null ) { diff --git a/tile/storage/TileDrive.java b/tile/storage/TileDrive.java index 17e5aa3b..d580c452 100644 --- a/tile/storage/TileDrive.java +++ b/tile/storage/TileDrive.java @@ -214,7 +214,7 @@ public class TileDrive extends AENetworkInvTile implements IChestOrDrive, IPrior if ( is != null ) { - handlersBySlot[x] = AEApi.instance().registries().cell().getHander( is ); + handlersBySlot[x] = AEApi.instance().registries().cell().getHandler( is ); if ( handlersBySlot[x] != null ) {