From 62bbdd4ea4e5ee88c537b0ad2cffeab7d581ac09 Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sat, 20 Sep 2014 23:24:29 +0200 Subject: [PATCH] hyph setfeature --- block/AEBaseBlock.java | 2 +- block/crafting/BlockCraftingUnit.java | 2 +- block/crafting/BlockMolecularAssembler.java | 2 +- block/grindstone/BlockCrank.java | 2 +- block/grindstone/BlockGrinder.java | 2 +- block/misc/BlockCellWorkbench.java | 2 +- block/misc/BlockCharger.java | 2 +- block/misc/BlockCondenser.java | 2 +- block/misc/BlockInscriber.java | 2 +- block/misc/BlockInterface.java | 2 +- block/misc/BlockLightDetector.java | 2 +- block/misc/BlockPaint.java | 2 +- block/misc/BlockQuartzGrowthAccelerator.java | 2 +- block/misc/BlockQuartzTorch.java | 2 +- block/misc/BlockSecurity.java | 2 +- block/misc/BlockSkyCompass.java | 2 +- block/misc/BlockTinyTNT.java | 2 +- block/misc/BlockVibrationChamber.java | 2 +- block/networking/BlockCableBus.java | 2 +- block/networking/BlockController.java | 2 +- block/networking/BlockCreativeEnergyCell.java | 2 +- block/networking/BlockDenseEnergyCell.java | 2 +- block/networking/BlockEnergyAcceptor.java | 2 +- block/networking/BlockEnergyCell.java | 2 +- block/networking/BlockWireless.java | 2 +- block/qnb/BlockQuantumLinkChamber.java | 2 +- block/qnb/BlockQuantumRing.java | 2 +- block/solids/BlockFluix.java | 2 +- block/solids/BlockQuartz.java | 2 +- block/solids/BlockQuartzChiseled.java | 2 +- block/solids/BlockQuartzGlass.java | 2 +- block/solids/BlockQuartzLamp.java | 2 +- block/solids/BlockQuartzPillar.java | 2 +- block/solids/BlockSkyStone.java | 2 +- block/solids/OreQuartz.java | 2 +- block/spatial/BlockMatrixFrame.java | 2 +- block/spatial/BlockSpatialIOPort.java | 2 +- block/spatial/BlockSpatialPylon.java | 2 +- block/storage/BlockChest.java | 2 +- block/storage/BlockDrive.java | 2 +- block/storage/BlockIOPort.java | 2 +- block/storage/BlockSkyChest.java | 2 +- debug/BlockChunkloader.java | 2 +- debug/BlockCubeGenerator.java | 2 +- debug/BlockItemGen.java | 2 +- debug/BlockPhantomNode.java | 2 +- 46 files changed, 46 insertions(+), 46 deletions(-) diff --git a/block/AEBaseBlock.java b/block/AEBaseBlock.java index 6d73e1ddf..0de749fc2 100644 --- a/block/AEBaseBlock.java +++ b/block/AEBaseBlock.java @@ -181,7 +181,7 @@ public class AEBaseBlock extends BlockContainer implements IAEFeature setTileProvider( hasBlockTileEntity() ); } - protected void setfeature(EnumSet f) + protected void setFeature(EnumSet f) { feature = new AEFeatureHandler( f, this, FeatureSubname ); } diff --git a/block/crafting/BlockCraftingUnit.java b/block/crafting/BlockCraftingUnit.java index b49f5236d..cb8eb813b 100644 --- a/block/crafting/BlockCraftingUnit.java +++ b/block/crafting/BlockCraftingUnit.java @@ -30,7 +30,7 @@ public class BlockCraftingUnit extends AEBaseBlock public BlockCraftingUnit(Class childClass) { super( childClass, Material.iron ); hasSubtypes = true; - setfeature( EnumSet.of( AEFeature.CraftingCPU ) ); + setFeature( EnumSet.of( AEFeature.CraftingCPU ) ); } public BlockCraftingUnit() { diff --git a/block/crafting/BlockMolecularAssembler.java b/block/crafting/BlockMolecularAssembler.java index 0c6055454..e23d18638 100644 --- a/block/crafting/BlockMolecularAssembler.java +++ b/block/crafting/BlockMolecularAssembler.java @@ -21,7 +21,7 @@ public class BlockMolecularAssembler extends AEBaseBlock public BlockMolecularAssembler() { super( BlockMolecularAssembler.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.MolecularAssembler ) ); + setFeature( EnumSet.of( AEFeature.MolecularAssembler ) ); setTileEntity( TileMolecularAssembler.class ); isOpaque = false; lightOpacity = 1; diff --git a/block/grindstone/BlockCrank.java b/block/grindstone/BlockCrank.java index 5552528c9..0dde54240 100644 --- a/block/grindstone/BlockCrank.java +++ b/block/grindstone/BlockCrank.java @@ -25,7 +25,7 @@ public class BlockCrank extends AEBaseBlock public BlockCrank() { super( BlockCrank.class, Material.wood ); - setfeature( EnumSet.of( AEFeature.GrindStone ) ); + setFeature( EnumSet.of( AEFeature.GrindStone ) ); setTileEntity( TileCrank.class ); setLightOpacity( 0 ); isFullSize = isOpaque = false; diff --git a/block/grindstone/BlockGrinder.java b/block/grindstone/BlockGrinder.java index 3555e51f6..b0b1632b9 100644 --- a/block/grindstone/BlockGrinder.java +++ b/block/grindstone/BlockGrinder.java @@ -17,7 +17,7 @@ public class BlockGrinder extends AEBaseBlock public BlockGrinder() { super( BlockGrinder.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.GrindStone ) ); + setFeature( EnumSet.of( AEFeature.GrindStone ) ); setTileEntity( TileGrinder.class ); setHardness( 3.2F ); } diff --git a/block/misc/BlockCellWorkbench.java b/block/misc/BlockCellWorkbench.java index 03181ed12..468eb690b 100644 --- a/block/misc/BlockCellWorkbench.java +++ b/block/misc/BlockCellWorkbench.java @@ -17,7 +17,7 @@ public class BlockCellWorkbench extends AEBaseBlock public BlockCellWorkbench() { super( BlockCellWorkbench.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.StorageCells ) ); + setFeature( EnumSet.of( AEFeature.StorageCells ) ); setTileEntity( TileCellWorkbench.class ); } diff --git a/block/misc/BlockCharger.java b/block/misc/BlockCharger.java index 44ed6ee31..77b8e0e65 100644 --- a/block/misc/BlockCharger.java +++ b/block/misc/BlockCharger.java @@ -33,7 +33,7 @@ public class BlockCharger extends AEBaseBlock implements ICustomCollision public BlockCharger() { super( BlockCharger.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setTileEntity( TileCharger.class ); setLightOpacity( 2 ); isFullSize = isOpaque = false; diff --git a/block/misc/BlockCondenser.java b/block/misc/BlockCondenser.java index 1852d44f0..d14ca7dad 100644 --- a/block/misc/BlockCondenser.java +++ b/block/misc/BlockCondenser.java @@ -17,7 +17,7 @@ public class BlockCondenser extends AEBaseBlock public BlockCondenser() { super( BlockCondenser.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setTileEntity( TileCondenser.class ); } diff --git a/block/misc/BlockInscriber.java b/block/misc/BlockInscriber.java index 0214678ae..e161d0f9a 100644 --- a/block/misc/BlockInscriber.java +++ b/block/misc/BlockInscriber.java @@ -19,7 +19,7 @@ public class BlockInscriber extends AEBaseBlock public BlockInscriber() { super( BlockInscriber.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Inscriber ) ); + setFeature( EnumSet.of( AEFeature.Inscriber ) ); setTileEntity( TileInscriber.class ); setLightOpacity( 2 ); isFullSize = isOpaque = false; diff --git a/block/misc/BlockInterface.java b/block/misc/BlockInterface.java index 37f7145ed..7c811002c 100644 --- a/block/misc/BlockInterface.java +++ b/block/misc/BlockInterface.java @@ -20,7 +20,7 @@ public class BlockInterface extends AEBaseBlock public BlockInterface() { super( BlockInterface.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setTileEntity( TileInterface.class ); } diff --git a/block/misc/BlockLightDetector.java b/block/misc/BlockLightDetector.java index 42b405e79..575f6a5da 100644 --- a/block/misc/BlockLightDetector.java +++ b/block/misc/BlockLightDetector.java @@ -15,7 +15,7 @@ public class BlockLightDetector extends BlockQuartzTorch public BlockLightDetector() { super( BlockLightDetector.class ); - setfeature( EnumSet.of( AEFeature.LightDetector ) ); + setFeature( EnumSet.of( AEFeature.LightDetector ) ); setTileEntity( TileLightDetector.class ); } diff --git a/block/misc/BlockPaint.java b/block/misc/BlockPaint.java index 03a9f4cd2..35de99a13 100644 --- a/block/misc/BlockPaint.java +++ b/block/misc/BlockPaint.java @@ -24,7 +24,7 @@ public class BlockPaint extends AEBaseBlock public BlockPaint() { super( BlockPaint.class, new MaterialLiquid( MapColor.airColor ) ); - setfeature( EnumSet.of( AEFeature.PaintBalls ) ); + setFeature( EnumSet.of( AEFeature.PaintBalls ) ); setTileEntity( TilePaint.class ); setLightOpacity( 0 ); isFullSize = false; diff --git a/block/misc/BlockQuartzGrowthAccelerator.java b/block/misc/BlockQuartzGrowthAccelerator.java index 6c9c4545e..1e9931a6e 100644 --- a/block/misc/BlockQuartzGrowthAccelerator.java +++ b/block/misc/BlockQuartzGrowthAccelerator.java @@ -29,7 +29,7 @@ public class BlockQuartzGrowthAccelerator extends AEBaseBlock implements IOrient public BlockQuartzGrowthAccelerator() { super( BlockQuartzGrowthAccelerator.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setTileEntity( TileQuartzGrowthAccelerator.class ); } diff --git a/block/misc/BlockQuartzTorch.java b/block/misc/BlockQuartzTorch.java index 81ffdfdb5..6bdc43358 100644 --- a/block/misc/BlockQuartzTorch.java +++ b/block/misc/BlockQuartzTorch.java @@ -39,7 +39,7 @@ public class BlockQuartzTorch extends AEBaseBlock implements IOrientableBlock, I public BlockQuartzTorch() { this( BlockQuartzTorch.class ); - setfeature( EnumSet.of( AEFeature.DecorativeLights ) ); + setFeature( EnumSet.of( AEFeature.DecorativeLights ) ); setLightLevel( 0.9375F ); } diff --git a/block/misc/BlockSecurity.java b/block/misc/BlockSecurity.java index a9803a54f..4c4e1eec8 100644 --- a/block/misc/BlockSecurity.java +++ b/block/misc/BlockSecurity.java @@ -19,7 +19,7 @@ public class BlockSecurity extends AEBaseBlock public BlockSecurity() { super( BlockSecurity.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Security ) ); + setFeature( EnumSet.of( AEFeature.Security ) ); setTileEntity( TileSecurity.class ); } diff --git a/block/misc/BlockSkyCompass.java b/block/misc/BlockSkyCompass.java index 3c59c8ba7..c24df0647 100644 --- a/block/misc/BlockSkyCompass.java +++ b/block/misc/BlockSkyCompass.java @@ -27,7 +27,7 @@ public class BlockSkyCompass extends AEBaseBlock implements ICustomCollision public BlockSkyCompass() { super( BlockSkyCompass.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.MeteoriteCompass ) ); + setFeature( EnumSet.of( AEFeature.MeteoriteCompass ) ); setTileEntity( TileSkyCompass.class ); isOpaque = isFullSize = false; lightOpacity = 0; diff --git a/block/misc/BlockTinyTNT.java b/block/misc/BlockTinyTNT.java index 2eae7337d..706326e3a 100644 --- a/block/misc/BlockTinyTNT.java +++ b/block/misc/BlockTinyTNT.java @@ -36,7 +36,7 @@ public class BlockTinyTNT extends AEBaseBlock implements ICustomCollision public BlockTinyTNT() { super( BlockTinyTNT.class, Material.tnt ); - setfeature( EnumSet.of( AEFeature.TinyTNT ) ); + setFeature( EnumSet.of( AEFeature.TinyTNT ) ); setLightOpacity( 3 ); setBlockBounds( 0.25f, 0.0f, 0.25f, 0.75f, 0.5f, 0.75f ); isFullSize = isOpaque = false; diff --git a/block/misc/BlockVibrationChamber.java b/block/misc/BlockVibrationChamber.java index c77f64a37..8b14a202c 100644 --- a/block/misc/BlockVibrationChamber.java +++ b/block/misc/BlockVibrationChamber.java @@ -23,7 +23,7 @@ public class BlockVibrationChamber extends AEBaseBlock public BlockVibrationChamber() { super( BlockVibrationChamber.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.PowerGen ) ); + setFeature( EnumSet.of( AEFeature.PowerGen ) ); setTileEntity( TileVibrationChamber.class ); setHardness( 4.2F ); } diff --git a/block/networking/BlockCableBus.java b/block/networking/BlockCableBus.java index c4a362fb2..329260698 100644 --- a/block/networking/BlockCableBus.java +++ b/block/networking/BlockCableBus.java @@ -76,7 +76,7 @@ public class BlockCableBus extends AEBaseBlock implements IRedNetConnection public BlockCableBus() { super( BlockCableBus.class, AEGlassMaterial.instance ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setLightOpacity( 0 ); isFullSize = isOpaque = false; } diff --git a/block/networking/BlockController.java b/block/networking/BlockController.java index f71a34e69..4309e0148 100644 --- a/block/networking/BlockController.java +++ b/block/networking/BlockController.java @@ -16,7 +16,7 @@ public class BlockController extends AEBaseBlock public BlockController() { super( BlockController.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Channels ) ); + setFeature( EnumSet.of( AEFeature.Channels ) ); setTileEntity( TileController.class ); setHardness( 6 ); } diff --git a/block/networking/BlockCreativeEnergyCell.java b/block/networking/BlockCreativeEnergyCell.java index 6ea2ba8bc..ab2a9a41d 100644 --- a/block/networking/BlockCreativeEnergyCell.java +++ b/block/networking/BlockCreativeEnergyCell.java @@ -12,7 +12,7 @@ public class BlockCreativeEnergyCell extends AEBaseBlock public BlockCreativeEnergyCell() { super( BlockCreativeEnergyCell.class, AEGlassMaterial.instance ); - setfeature( EnumSet.of( AEFeature.Creative ) ); + setFeature( EnumSet.of( AEFeature.Creative ) ); setTileEntity( TileCreativeEnergyCell.class ); } diff --git a/block/networking/BlockDenseEnergyCell.java b/block/networking/BlockDenseEnergyCell.java index 750c61031..21fcddddb 100644 --- a/block/networking/BlockDenseEnergyCell.java +++ b/block/networking/BlockDenseEnergyCell.java @@ -18,7 +18,7 @@ public class BlockDenseEnergyCell extends BlockEnergyCell public BlockDenseEnergyCell() { super( BlockDenseEnergyCell.class ); - setfeature( EnumSet.of( AEFeature.DenseEnergyCells ) ); + setFeature( EnumSet.of( AEFeature.DenseEnergyCells ) ); setTileEntity( TileDenseEnergyCell.class ); } diff --git a/block/networking/BlockEnergyAcceptor.java b/block/networking/BlockEnergyAcceptor.java index 0f071420e..10ca41ac9 100644 --- a/block/networking/BlockEnergyAcceptor.java +++ b/block/networking/BlockEnergyAcceptor.java @@ -12,7 +12,7 @@ public class BlockEnergyAcceptor extends AEBaseBlock public BlockEnergyAcceptor() { super( BlockEnergyAcceptor.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setTileEntity( TileEnergyAcceptor.class ); } diff --git a/block/networking/BlockEnergyCell.java b/block/networking/BlockEnergyCell.java index 037f87dca..b3a89b083 100644 --- a/block/networking/BlockEnergyCell.java +++ b/block/networking/BlockEnergyCell.java @@ -32,7 +32,7 @@ public class BlockEnergyCell extends AEBaseBlock public BlockEnergyCell() { this( BlockEnergyCell.class ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setTileEntity( TileEnergyCell.class ); } diff --git a/block/networking/BlockWireless.java b/block/networking/BlockWireless.java index 035e46ffb..45e857cfd 100644 --- a/block/networking/BlockWireless.java +++ b/block/networking/BlockWireless.java @@ -25,7 +25,7 @@ public class BlockWireless extends AEBaseBlock implements ICustomCollision public BlockWireless() { super( BlockWireless.class, AEGlassMaterial.instance ); - setfeature( EnumSet.of( AEFeature.Core, AEFeature.WirelessAccessTerminal ) ); + setFeature( EnumSet.of( AEFeature.Core, AEFeature.WirelessAccessTerminal ) ); setTileEntity( TileWireless.class ); setLightOpacity( 0 ); isFullSize = false; diff --git a/block/qnb/BlockQuantumLinkChamber.java b/block/qnb/BlockQuantumLinkChamber.java index 027ab9bc4..f6c86a26b 100644 --- a/block/qnb/BlockQuantumLinkChamber.java +++ b/block/qnb/BlockQuantumLinkChamber.java @@ -30,7 +30,7 @@ public class BlockQuantumLinkChamber extends AEBaseBlock implements ICustomColli public BlockQuantumLinkChamber() { super( BlockQuantumLinkChamber.class, AEGlassMaterial.instance ); - setfeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) ); + setFeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) ); setTileEntity( TileQuantumBridge.class ); float shave = 2.0f / 16.0f; setBlockBounds( shave, shave, shave, 1.0f - shave, 1.0f - shave, 1.0f - shave ); diff --git a/block/qnb/BlockQuantumRing.java b/block/qnb/BlockQuantumRing.java index d39c39818..0e4def0fe 100644 --- a/block/qnb/BlockQuantumRing.java +++ b/block/qnb/BlockQuantumRing.java @@ -21,7 +21,7 @@ public class BlockQuantumRing extends AEBaseBlock implements ICustomCollision public BlockQuantumRing() { super( BlockQuantumRing.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) ); + setFeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) ); setTileEntity( TileQuantumBridge.class ); float shave = 2.0f / 16.0f; setBlockBounds( shave, shave, shave, 1.0f - shave, 1.0f - shave, 1.0f - shave ); diff --git a/block/solids/BlockFluix.java b/block/solids/BlockFluix.java index ecb8414ff..7759c8efa 100644 --- a/block/solids/BlockFluix.java +++ b/block/solids/BlockFluix.java @@ -11,7 +11,7 @@ public class BlockFluix extends AEDecorativeBlock public BlockFluix() { super( BlockFluix.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); + setFeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); } } diff --git a/block/solids/BlockQuartz.java b/block/solids/BlockQuartz.java index 20bb1f8c1..0bb999314 100644 --- a/block/solids/BlockQuartz.java +++ b/block/solids/BlockQuartz.java @@ -11,7 +11,7 @@ public class BlockQuartz extends AEDecorativeBlock public BlockQuartz() { super( BlockQuartz.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); + setFeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); } } diff --git a/block/solids/BlockQuartzChiseled.java b/block/solids/BlockQuartzChiseled.java index 896d69971..ac54c6e03 100644 --- a/block/solids/BlockQuartzChiseled.java +++ b/block/solids/BlockQuartzChiseled.java @@ -11,7 +11,7 @@ public class BlockQuartzChiseled extends AEDecorativeBlock public BlockQuartzChiseled() { super( BlockQuartzChiseled.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); + setFeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); } } diff --git a/block/solids/BlockQuartzGlass.java b/block/solids/BlockQuartzGlass.java index 4d902dace..c210f7e75 100644 --- a/block/solids/BlockQuartzGlass.java +++ b/block/solids/BlockQuartzGlass.java @@ -40,7 +40,7 @@ public class BlockQuartzGlass extends AEBaseBlock public BlockQuartzGlass(Class c) { super( c, Material.glass ); - setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); + setFeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); setLightOpacity( 0 ); isOpaque = false; } diff --git a/block/solids/BlockQuartzLamp.java b/block/solids/BlockQuartzLamp.java index 43e141f68..b6e248583 100644 --- a/block/solids/BlockQuartzLamp.java +++ b/block/solids/BlockQuartzLamp.java @@ -18,7 +18,7 @@ public class BlockQuartzLamp extends BlockQuartzGlass public BlockQuartzLamp() { super( BlockQuartzLamp.class ); - setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks, AEFeature.DecorativeLights ) ); + setFeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks, AEFeature.DecorativeLights ) ); setLightLevel( 1.0f ); setBlockTextureName( "BlockQuartzGlass" ); } diff --git a/block/solids/BlockQuartzPillar.java b/block/solids/BlockQuartzPillar.java index b42328b69..71526565f 100644 --- a/block/solids/BlockQuartzPillar.java +++ b/block/solids/BlockQuartzPillar.java @@ -15,7 +15,7 @@ public class BlockQuartzPillar extends AEBaseBlock implements IOrientableBlock public BlockQuartzPillar() { super( BlockQuartzPillar.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); + setFeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) ); } @Override diff --git a/block/solids/BlockSkyStone.java b/block/solids/BlockSkyStone.java index afc1103b1..d6a9524ad 100644 --- a/block/solids/BlockSkyStone.java +++ b/block/solids/BlockSkyStone.java @@ -63,7 +63,7 @@ public class BlockSkyStone extends AEBaseBlock implements IOrientableBlock public BlockSkyStone() { super( BlockSkyStone.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setHardness( 50 ); hasSubtypes = true; blockResistance = 150.0f; diff --git a/block/solids/OreQuartz.java b/block/solids/OreQuartz.java index 9c40a9f1e..85f2c3d7a 100644 --- a/block/solids/OreQuartz.java +++ b/block/solids/OreQuartz.java @@ -25,7 +25,7 @@ public class OreQuartz extends AEBaseBlock public OreQuartz(Class self) { super( self, Material.rock ); - setfeature( EnumSet.of( AEFeature.Core ) ); + setFeature( EnumSet.of( AEFeature.Core ) ); setHardness( 3.0F ); setResistance( 5.0F ); boostBrightnessLow = 0; diff --git a/block/spatial/BlockMatrixFrame.java b/block/spatial/BlockMatrixFrame.java index 3ff746bf0..ea011c488 100644 --- a/block/spatial/BlockMatrixFrame.java +++ b/block/spatial/BlockMatrixFrame.java @@ -23,7 +23,7 @@ public class BlockMatrixFrame extends AEBaseBlock implements ICustomCollision public BlockMatrixFrame() { super( BlockMatrixFrame.class, Material.anvil); - setfeature( EnumSet.of( AEFeature.SpatialIO ) ); + setFeature( EnumSet.of( AEFeature.SpatialIO ) ); setResistance( 6000000.0F ); setBlockUnbreakable(); setLightOpacity( 0 ); diff --git a/block/spatial/BlockSpatialIOPort.java b/block/spatial/BlockSpatialIOPort.java index 012610778..a47f63215 100644 --- a/block/spatial/BlockSpatialIOPort.java +++ b/block/spatial/BlockSpatialIOPort.java @@ -18,7 +18,7 @@ public class BlockSpatialIOPort extends AEBaseBlock public BlockSpatialIOPort() { super( BlockSpatialIOPort.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.SpatialIO ) ); + setFeature( EnumSet.of( AEFeature.SpatialIO ) ); setTileEntity( TileSpatialIOPort.class ); } diff --git a/block/spatial/BlockSpatialPylon.java b/block/spatial/BlockSpatialPylon.java index 0ee09ef35..a6962e201 100644 --- a/block/spatial/BlockSpatialPylon.java +++ b/block/spatial/BlockSpatialPylon.java @@ -17,7 +17,7 @@ public class BlockSpatialPylon extends AEBaseBlock public BlockSpatialPylon() { super( BlockSpatialPylon.class, AEGlassMaterial.instance ); - setfeature( EnumSet.of( AEFeature.SpatialIO ) ); + setFeature( EnumSet.of( AEFeature.SpatialIO ) ); setTileEntity( TileSpatialPylon.class ); } diff --git a/block/storage/BlockChest.java b/block/storage/BlockChest.java index aa281a1c8..47b93457e 100644 --- a/block/storage/BlockChest.java +++ b/block/storage/BlockChest.java @@ -23,7 +23,7 @@ public class BlockChest extends AEBaseBlock public BlockChest() { super( BlockChest.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEChest ) ); + setFeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEChest ) ); setTileEntity( TileChest.class ); } diff --git a/block/storage/BlockDrive.java b/block/storage/BlockDrive.java index 6636a4e68..546d4cbc3 100644 --- a/block/storage/BlockDrive.java +++ b/block/storage/BlockDrive.java @@ -19,7 +19,7 @@ public class BlockDrive extends AEBaseBlock public BlockDrive() { super( BlockDrive.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEDrive ) ); + setFeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEDrive ) ); setTileEntity( TileDrive.class ); } diff --git a/block/storage/BlockIOPort.java b/block/storage/BlockIOPort.java index 48e60cb05..6b4c0ec7a 100644 --- a/block/storage/BlockIOPort.java +++ b/block/storage/BlockIOPort.java @@ -18,7 +18,7 @@ public class BlockIOPort extends AEBaseBlock public BlockIOPort() { super( BlockIOPort.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.IOPort ) ); + setFeature( EnumSet.of( AEFeature.StorageCells, AEFeature.IOPort ) ); setTileEntity( TileIOPort.class ); } diff --git a/block/storage/BlockSkyChest.java b/block/storage/BlockSkyChest.java index 169bea386..b62b659de 100644 --- a/block/storage/BlockSkyChest.java +++ b/block/storage/BlockSkyChest.java @@ -33,7 +33,7 @@ public class BlockSkyChest extends AEBaseBlock implements ICustomCollision public BlockSkyChest() { super( BlockSkyChest.class, Material.rock ); - setfeature( EnumSet.of( AEFeature.Core, AEFeature.SkyStoneChests ) ); + setFeature( EnumSet.of( AEFeature.Core, AEFeature.SkyStoneChests ) ); setTileEntity( TileSkyChest.class ); isOpaque = isFullSize = false; lightOpacity = 0; diff --git a/debug/BlockChunkloader.java b/debug/BlockChunkloader.java index fcc1a7f70..0a1947a24 100644 --- a/debug/BlockChunkloader.java +++ b/debug/BlockChunkloader.java @@ -18,7 +18,7 @@ public class BlockChunkloader extends AEBaseBlock implements LoadingCallback public BlockChunkloader() { super( BlockChunkloader.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); + setFeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); setTileEntity( TileChunkLoader.class ); ForgeChunkManager.setForcedChunkLoadingCallback( AppEng.instance, this ); } diff --git a/debug/BlockCubeGenerator.java b/debug/BlockCubeGenerator.java index e9518ca99..bda1664e8 100644 --- a/debug/BlockCubeGenerator.java +++ b/debug/BlockCubeGenerator.java @@ -14,7 +14,7 @@ public class BlockCubeGenerator extends AEBaseBlock public BlockCubeGenerator() { super( BlockCubeGenerator.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); + setFeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); setTileEntity( TileCubeGenerator.class ); } diff --git a/debug/BlockItemGen.java b/debug/BlockItemGen.java index 8f7bf1231..b651755ea 100644 --- a/debug/BlockItemGen.java +++ b/debug/BlockItemGen.java @@ -12,7 +12,7 @@ public class BlockItemGen extends AEBaseBlock public BlockItemGen() { super( BlockItemGen.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); + setFeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); setTileEntity( TileItemGen.class ); } diff --git a/debug/BlockPhantomNode.java b/debug/BlockPhantomNode.java index 02ae75364..f6862365d 100644 --- a/debug/BlockPhantomNode.java +++ b/debug/BlockPhantomNode.java @@ -14,7 +14,7 @@ public class BlockPhantomNode extends AEBaseBlock public BlockPhantomNode() { super( BlockPhantomNode.class, Material.iron ); - setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); + setFeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) ); setTileEntity( TilePhantomNode.class ); }