diff --git a/block/AEBaseBlock.java b/block/AEBaseBlock.java index 2d9faaebe..6d73e1ddf 100644 --- a/block/AEBaseBlock.java +++ b/block/AEBaseBlock.java @@ -173,7 +173,7 @@ public class AEBaseBlock extends BlockContainer implements IAEFeature return getIcon( mapRotation( w, x, y, z, s ), w.getBlockMetadata( x, y, z ) ); } - protected void setTileEntiy(Class c) + protected void setTileEntity(Class c) { AEBaseTile.registerTileItem( c, new ItemStackSrc( this, 0 ) ); GameRegistry.registerTileEntity( tileEntityType = c, FeatureFullname ); diff --git a/block/crafting/BlockCraftingMonitor.java b/block/crafting/BlockCraftingMonitor.java index 567a0dfa7..1cc696d88 100644 --- a/block/crafting/BlockCraftingMonitor.java +++ b/block/crafting/BlockCraftingMonitor.java @@ -18,7 +18,7 @@ public class BlockCraftingMonitor extends BlockCraftingUnit public BlockCraftingMonitor() { super( BlockCraftingMonitor.class ); - setTileEntiy( TileCraftingMonitorTile.class ); + setTileEntity( TileCraftingMonitorTile.class ); } @Override diff --git a/block/crafting/BlockCraftingStorage.java b/block/crafting/BlockCraftingStorage.java index af67349db..61f6992c4 100644 --- a/block/crafting/BlockCraftingStorage.java +++ b/block/crafting/BlockCraftingStorage.java @@ -14,7 +14,7 @@ public class BlockCraftingStorage extends BlockCraftingUnit public BlockCraftingStorage() { super( BlockCraftingStorage.class ); - setTileEntiy( TileCraftingStorageTile.class ); + setTileEntity( TileCraftingStorageTile.class ); } @Override diff --git a/block/crafting/BlockCraftingUnit.java b/block/crafting/BlockCraftingUnit.java index 8a387487e..b49f5236d 100644 --- a/block/crafting/BlockCraftingUnit.java +++ b/block/crafting/BlockCraftingUnit.java @@ -35,7 +35,7 @@ public class BlockCraftingUnit extends AEBaseBlock public BlockCraftingUnit() { this( BlockCraftingUnit.class ); - setTileEntiy( TileCraftingTile.class ); + setTileEntity( TileCraftingTile.class ); } @Override diff --git a/block/crafting/BlockMolecularAssembler.java b/block/crafting/BlockMolecularAssembler.java index 4c9b69e51..0c6055454 100644 --- a/block/crafting/BlockMolecularAssembler.java +++ b/block/crafting/BlockMolecularAssembler.java @@ -22,7 +22,7 @@ public class BlockMolecularAssembler extends AEBaseBlock public BlockMolecularAssembler() { super( BlockMolecularAssembler.class, Material.iron ); setfeature( EnumSet.of( AEFeature.MolecularAssembler ) ); - setTileEntiy( TileMolecularAssembler.class ); + setTileEntity( TileMolecularAssembler.class ); isOpaque = false; lightOpacity = 1; } diff --git a/block/grindstone/BlockCrank.java b/block/grindstone/BlockCrank.java index 578a1338f..5552528c9 100644 --- a/block/grindstone/BlockCrank.java +++ b/block/grindstone/BlockCrank.java @@ -26,7 +26,7 @@ public class BlockCrank extends AEBaseBlock public BlockCrank() { super( BlockCrank.class, Material.wood ); setfeature( EnumSet.of( AEFeature.GrindStone ) ); - setTileEntiy( TileCrank.class ); + setTileEntity( TileCrank.class ); setLightOpacity( 0 ); isFullSize = isOpaque = false; } diff --git a/block/grindstone/BlockGrinder.java b/block/grindstone/BlockGrinder.java index f75cf0578..3555e51f6 100644 --- a/block/grindstone/BlockGrinder.java +++ b/block/grindstone/BlockGrinder.java @@ -18,7 +18,7 @@ public class BlockGrinder extends AEBaseBlock public BlockGrinder() { super( BlockGrinder.class, Material.rock ); setfeature( EnumSet.of( AEFeature.GrindStone ) ); - setTileEntiy( TileGrinder.class ); + setTileEntity( TileGrinder.class ); setHardness( 3.2F ); } diff --git a/block/misc/BlockCellWorkbench.java b/block/misc/BlockCellWorkbench.java index 6647a5a9b..03181ed12 100644 --- a/block/misc/BlockCellWorkbench.java +++ b/block/misc/BlockCellWorkbench.java @@ -18,7 +18,7 @@ public class BlockCellWorkbench extends AEBaseBlock public BlockCellWorkbench() { super( BlockCellWorkbench.class, Material.iron ); setfeature( EnumSet.of( AEFeature.StorageCells ) ); - setTileEntiy( TileCellWorkbench.class ); + setTileEntity( TileCellWorkbench.class ); } @Override diff --git a/block/misc/BlockCharger.java b/block/misc/BlockCharger.java index 39bf9e864..44ed6ee31 100644 --- a/block/misc/BlockCharger.java +++ b/block/misc/BlockCharger.java @@ -34,7 +34,7 @@ public class BlockCharger extends AEBaseBlock implements ICustomCollision public BlockCharger() { super( BlockCharger.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Core ) ); - setTileEntiy( TileCharger.class ); + setTileEntity( TileCharger.class ); setLightOpacity( 2 ); isFullSize = isOpaque = false; } diff --git a/block/misc/BlockCondenser.java b/block/misc/BlockCondenser.java index 89bddecbe..1852d44f0 100644 --- a/block/misc/BlockCondenser.java +++ b/block/misc/BlockCondenser.java @@ -18,7 +18,7 @@ public class BlockCondenser extends AEBaseBlock public BlockCondenser() { super( BlockCondenser.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Core ) ); - setTileEntiy( TileCondenser.class ); + setTileEntity( TileCondenser.class ); } @Override diff --git a/block/misc/BlockInscriber.java b/block/misc/BlockInscriber.java index caca7a6c7..0214678ae 100644 --- a/block/misc/BlockInscriber.java +++ b/block/misc/BlockInscriber.java @@ -20,7 +20,7 @@ public class BlockInscriber extends AEBaseBlock public BlockInscriber() { super( BlockInscriber.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Inscriber ) ); - setTileEntiy( TileInscriber.class ); + setTileEntity( TileInscriber.class ); setLightOpacity( 2 ); isFullSize = isOpaque = false; } diff --git a/block/misc/BlockInterface.java b/block/misc/BlockInterface.java index e4a3312ce..37f7145ed 100644 --- a/block/misc/BlockInterface.java +++ b/block/misc/BlockInterface.java @@ -21,7 +21,7 @@ public class BlockInterface extends AEBaseBlock public BlockInterface() { super( BlockInterface.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Core ) ); - setTileEntiy( TileInterface.class ); + setTileEntity( TileInterface.class ); } @Override diff --git a/block/misc/BlockLightDetector.java b/block/misc/BlockLightDetector.java index 87abae008..42b405e79 100644 --- a/block/misc/BlockLightDetector.java +++ b/block/misc/BlockLightDetector.java @@ -16,7 +16,7 @@ public class BlockLightDetector extends BlockQuartzTorch public BlockLightDetector() { super( BlockLightDetector.class ); setfeature( EnumSet.of( AEFeature.LightDetector ) ); - setTileEntiy( TileLightDetector.class ); + setTileEntity( TileLightDetector.class ); } @Override diff --git a/block/misc/BlockPaint.java b/block/misc/BlockPaint.java index e0b46e7ed..03a9f4cd2 100644 --- a/block/misc/BlockPaint.java +++ b/block/misc/BlockPaint.java @@ -25,7 +25,7 @@ public class BlockPaint extends AEBaseBlock public BlockPaint() { super( BlockPaint.class, new MaterialLiquid( MapColor.airColor ) ); setfeature( EnumSet.of( AEFeature.PaintBalls ) ); - setTileEntiy( TilePaint.class ); + setTileEntity( TilePaint.class ); setLightOpacity( 0 ); isFullSize = false; isOpaque = false; diff --git a/block/misc/BlockQuartzGrowthAccelerator.java b/block/misc/BlockQuartzGrowthAccelerator.java index 3bd4f3c97..6c9c4545e 100644 --- a/block/misc/BlockQuartzGrowthAccelerator.java +++ b/block/misc/BlockQuartzGrowthAccelerator.java @@ -30,7 +30,7 @@ public class BlockQuartzGrowthAccelerator extends AEBaseBlock implements IOrient public BlockQuartzGrowthAccelerator() { super( BlockQuartzGrowthAccelerator.class, Material.rock ); setfeature( EnumSet.of( AEFeature.Core ) ); - setTileEntiy( TileQuartzGrowthAccelerator.class ); + setTileEntity( TileQuartzGrowthAccelerator.class ); } @Override diff --git a/block/misc/BlockSecurity.java b/block/misc/BlockSecurity.java index b214a9f32..a9803a54f 100644 --- a/block/misc/BlockSecurity.java +++ b/block/misc/BlockSecurity.java @@ -20,7 +20,7 @@ public class BlockSecurity extends AEBaseBlock public BlockSecurity() { super( BlockSecurity.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Security ) ); - setTileEntiy( TileSecurity.class ); + setTileEntity( TileSecurity.class ); } @Override diff --git a/block/misc/BlockSkyCompass.java b/block/misc/BlockSkyCompass.java index 74622cc7a..3c59c8ba7 100644 --- a/block/misc/BlockSkyCompass.java +++ b/block/misc/BlockSkyCompass.java @@ -28,7 +28,7 @@ public class BlockSkyCompass extends AEBaseBlock implements ICustomCollision public BlockSkyCompass() { super( BlockSkyCompass.class, Material.iron ); setfeature( EnumSet.of( AEFeature.MeteoriteCompass ) ); - setTileEntiy( TileSkyCompass.class ); + setTileEntity( TileSkyCompass.class ); isOpaque = isFullSize = false; lightOpacity = 0; } diff --git a/block/misc/BlockVibrationChamber.java b/block/misc/BlockVibrationChamber.java index 5b3f8da01..c77f64a37 100644 --- a/block/misc/BlockVibrationChamber.java +++ b/block/misc/BlockVibrationChamber.java @@ -24,7 +24,7 @@ public class BlockVibrationChamber extends AEBaseBlock public BlockVibrationChamber() { super( BlockVibrationChamber.class, Material.iron ); setfeature( EnumSet.of( AEFeature.PowerGen ) ); - setTileEntiy( TileVibrationChamber.class ); + setTileEntity( TileVibrationChamber.class ); setHardness( 4.2F ); } diff --git a/block/networking/BlockCableBus.java b/block/networking/BlockCableBus.java index 3e8a86b24..c4a362fb2 100644 --- a/block/networking/BlockCableBus.java +++ b/block/networking/BlockCableBus.java @@ -399,7 +399,7 @@ public class BlockCableBus extends AEBaseBlock implements IRedNetConnection public void setupTile() { - setTileEntiy( noTesrTile = Api.instance.partHelper.getCombinedInstance( TileCableBus.class.getName() ) ); + setTileEntity( noTesrTile = Api.instance.partHelper.getCombinedInstance( TileCableBus.class.getName() ) ); if ( Platform.isClient() ) { tesrTile = Api.instance.partHelper.getCombinedInstance( TileCableBusTESR.class.getName() ); diff --git a/block/networking/BlockController.java b/block/networking/BlockController.java index cceed85d6..f71a34e69 100644 --- a/block/networking/BlockController.java +++ b/block/networking/BlockController.java @@ -17,7 +17,7 @@ public class BlockController extends AEBaseBlock public BlockController() { super( BlockController.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Channels ) ); - setTileEntiy( TileController.class ); + setTileEntity( TileController.class ); setHardness( 6 ); } diff --git a/block/networking/BlockCreativeEnergyCell.java b/block/networking/BlockCreativeEnergyCell.java index d0334664a..6ea2ba8bc 100644 --- a/block/networking/BlockCreativeEnergyCell.java +++ b/block/networking/BlockCreativeEnergyCell.java @@ -13,7 +13,7 @@ public class BlockCreativeEnergyCell extends AEBaseBlock public BlockCreativeEnergyCell() { super( BlockCreativeEnergyCell.class, AEGlassMaterial.instance ); setfeature( EnumSet.of( AEFeature.Creative ) ); - setTileEntiy( TileCreativeEnergyCell.class ); + setTileEntity( TileCreativeEnergyCell.class ); } } diff --git a/block/networking/BlockDenseEnergyCell.java b/block/networking/BlockDenseEnergyCell.java index a151c1aa8..750c61031 100644 --- a/block/networking/BlockDenseEnergyCell.java +++ b/block/networking/BlockDenseEnergyCell.java @@ -19,7 +19,7 @@ public class BlockDenseEnergyCell extends BlockEnergyCell public BlockDenseEnergyCell() { super( BlockDenseEnergyCell.class ); setfeature( EnumSet.of( AEFeature.DenseEnergyCells ) ); - setTileEntiy( TileDenseEnergyCell.class ); + setTileEntity( TileDenseEnergyCell.class ); } @Override diff --git a/block/networking/BlockEnergyAcceptor.java b/block/networking/BlockEnergyAcceptor.java index 731beb5ff..0f071420e 100644 --- a/block/networking/BlockEnergyAcceptor.java +++ b/block/networking/BlockEnergyAcceptor.java @@ -13,7 +13,7 @@ public class BlockEnergyAcceptor extends AEBaseBlock public BlockEnergyAcceptor() { super( BlockEnergyAcceptor.class, Material.iron ); setfeature( EnumSet.of( AEFeature.Core ) ); - setTileEntiy( TileEnergyAcceptor.class ); + setTileEntity( TileEnergyAcceptor.class ); } } diff --git a/block/networking/BlockEnergyCell.java b/block/networking/BlockEnergyCell.java index 590770d9a..037f87dca 100644 --- a/block/networking/BlockEnergyCell.java +++ b/block/networking/BlockEnergyCell.java @@ -33,7 +33,7 @@ public class BlockEnergyCell extends AEBaseBlock public BlockEnergyCell() { this( BlockEnergyCell.class ); setfeature( EnumSet.of( AEFeature.Core ) ); - setTileEntiy( TileEnergyCell.class ); + setTileEntity( TileEnergyCell.class ); } @Override diff --git a/block/networking/BlockWireless.java b/block/networking/BlockWireless.java index aebba6095..035e46ffb 100644 --- a/block/networking/BlockWireless.java +++ b/block/networking/BlockWireless.java @@ -26,7 +26,7 @@ public class BlockWireless extends AEBaseBlock implements ICustomCollision public BlockWireless() { super( BlockWireless.class, AEGlassMaterial.instance ); setfeature( EnumSet.of( AEFeature.Core, AEFeature.WirelessAccessTerminal ) ); - setTileEntiy( TileWireless.class ); + setTileEntity( TileWireless.class ); setLightOpacity( 0 ); isFullSize = false; isOpaque = false; diff --git a/block/qnb/BlockQuantumLinkChamber.java b/block/qnb/BlockQuantumLinkChamber.java index 69e7331cc..027ab9bc4 100644 --- a/block/qnb/BlockQuantumLinkChamber.java +++ b/block/qnb/BlockQuantumLinkChamber.java @@ -31,7 +31,7 @@ public class BlockQuantumLinkChamber extends AEBaseBlock implements ICustomColli public BlockQuantumLinkChamber() { super( BlockQuantumLinkChamber.class, AEGlassMaterial.instance ); setfeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) ); - setTileEntiy( TileQuantumBridge.class ); + setTileEntity( TileQuantumBridge.class ); float shave = 2.0f / 16.0f; setBlockBounds( shave, shave, shave, 1.0f - shave, 1.0f - shave, 1.0f - shave ); setLightOpacity( 0 ); diff --git a/block/qnb/BlockQuantumRing.java b/block/qnb/BlockQuantumRing.java index 7870c096a..d39c39818 100644 --- a/block/qnb/BlockQuantumRing.java +++ b/block/qnb/BlockQuantumRing.java @@ -22,7 +22,7 @@ public class BlockQuantumRing extends AEBaseBlock implements ICustomCollision public BlockQuantumRing() { super( BlockQuantumRing.class, Material.iron ); setfeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) ); - setTileEntiy( TileQuantumBridge.class ); + setTileEntity( TileQuantumBridge.class ); float shave = 2.0f / 16.0f; setBlockBounds( shave, shave, shave, 1.0f - shave, 1.0f - shave, 1.0f - shave ); setLightOpacity( 1 ); diff --git a/block/spatial/BlockSpatialIOPort.java b/block/spatial/BlockSpatialIOPort.java index da26eadbc..012610778 100644 --- a/block/spatial/BlockSpatialIOPort.java +++ b/block/spatial/BlockSpatialIOPort.java @@ -19,7 +19,7 @@ public class BlockSpatialIOPort extends AEBaseBlock public BlockSpatialIOPort() { super( BlockSpatialIOPort.class, Material.iron ); setfeature( EnumSet.of( AEFeature.SpatialIO ) ); - setTileEntiy( TileSpatialIOPort.class ); + setTileEntity( TileSpatialIOPort.class ); } @Override diff --git a/block/spatial/BlockSpatialPylon.java b/block/spatial/BlockSpatialPylon.java index 50ae3ecf8..0ee09ef35 100644 --- a/block/spatial/BlockSpatialPylon.java +++ b/block/spatial/BlockSpatialPylon.java @@ -18,7 +18,7 @@ public class BlockSpatialPylon extends AEBaseBlock public BlockSpatialPylon() { super( BlockSpatialPylon.class, AEGlassMaterial.instance ); setfeature( EnumSet.of( AEFeature.SpatialIO ) ); - setTileEntiy( TileSpatialPylon.class ); + setTileEntity( TileSpatialPylon.class ); } @Override diff --git a/block/storage/BlockChest.java b/block/storage/BlockChest.java index 27553fdd6..aa281a1c8 100644 --- a/block/storage/BlockChest.java +++ b/block/storage/BlockChest.java @@ -24,7 +24,7 @@ public class BlockChest extends AEBaseBlock public BlockChest() { super( BlockChest.class, Material.iron ); setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEChest ) ); - setTileEntiy( TileChest.class ); + setTileEntity( TileChest.class ); } @Override diff --git a/block/storage/BlockDrive.java b/block/storage/BlockDrive.java index a06b0155e..6636a4e68 100644 --- a/block/storage/BlockDrive.java +++ b/block/storage/BlockDrive.java @@ -20,7 +20,7 @@ public class BlockDrive extends AEBaseBlock public BlockDrive() { super( BlockDrive.class, Material.iron ); setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEDrive ) ); - setTileEntiy( TileDrive.class ); + setTileEntity( TileDrive.class ); } @Override diff --git a/block/storage/BlockIOPort.java b/block/storage/BlockIOPort.java index 942ffe428..48e60cb05 100644 --- a/block/storage/BlockIOPort.java +++ b/block/storage/BlockIOPort.java @@ -19,7 +19,7 @@ public class BlockIOPort extends AEBaseBlock public BlockIOPort() { super( BlockIOPort.class, Material.iron ); setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.IOPort ) ); - setTileEntiy( TileIOPort.class ); + setTileEntity( TileIOPort.class ); } @Override diff --git a/block/storage/BlockSkyChest.java b/block/storage/BlockSkyChest.java index a6f53ac93..169bea386 100644 --- a/block/storage/BlockSkyChest.java +++ b/block/storage/BlockSkyChest.java @@ -34,7 +34,7 @@ public class BlockSkyChest extends AEBaseBlock implements ICustomCollision public BlockSkyChest() { super( BlockSkyChest.class, Material.rock ); setfeature( EnumSet.of( AEFeature.Core, AEFeature.SkyStoneChests ) ); - setTileEntiy( TileSkyChest.class ); + setTileEntity( TileSkyChest.class ); isOpaque = isFullSize = false; lightOpacity = 0; hasSubtypes = true; diff --git a/debug/BlockChunkloader.java b/debug/BlockChunkloader.java index e52374390..fcc1a7f70 100644 --- a/debug/BlockChunkloader.java +++ b/debug/BlockChunkloader.java @@ -19,7 +19,7 @@ public class BlockChunkloader extends AEBaseBlock implements LoadingCallback public BlockChunkloader() { super( BlockChunkloader.class, Material.iron ); setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); - setTileEntiy( TileChunkLoader.class ); + setTileEntity( TileChunkLoader.class ); ForgeChunkManager.setForcedChunkLoadingCallback( AppEng.instance, this ); } diff --git a/debug/BlockCubeGenerator.java b/debug/BlockCubeGenerator.java index 06532e859..e9518ca99 100644 --- a/debug/BlockCubeGenerator.java +++ b/debug/BlockCubeGenerator.java @@ -15,7 +15,7 @@ public class BlockCubeGenerator extends AEBaseBlock public BlockCubeGenerator() { super( BlockCubeGenerator.class, Material.iron ); setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); - setTileEntiy( TileCubeGenerator.class ); + setTileEntity( TileCubeGenerator.class ); } @Override diff --git a/debug/BlockItemGen.java b/debug/BlockItemGen.java index 065be7c31..8f7bf1231 100644 --- a/debug/BlockItemGen.java +++ b/debug/BlockItemGen.java @@ -13,7 +13,7 @@ public class BlockItemGen extends AEBaseBlock public BlockItemGen() { super( BlockItemGen.class, Material.iron ); setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); - setTileEntiy( TileItemGen.class ); + setTileEntity( TileItemGen.class ); } @Override diff --git a/debug/BlockPhantomNode.java b/debug/BlockPhantomNode.java index 0e274e795..02ae75364 100644 --- a/debug/BlockPhantomNode.java +++ b/debug/BlockPhantomNode.java @@ -15,7 +15,7 @@ public class BlockPhantomNode extends AEBaseBlock public BlockPhantomNode() { super( BlockPhantomNode.class, Material.iron ); setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); - setTileEntiy( TilePhantomNode.class ); + setTileEntity( TilePhantomNode.class ); } @Override