sort modifier

This commit is contained in:
thatsIch
2015-09-30 14:27:21 +02:00
parent ebda927fb5
commit 7dee5699cf
9 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -137,13 +137,13 @@ public abstract class AEBaseBlock extends Block implements IAEFeature
public static final UnlistedBlockAccess AE_BLOCK_ACCESS = new UnlistedBlockAccess();
@Override
final protected BlockState createBlockState()
protected final BlockState createBlockState()
{
return new ExtendedBlockState( this, this.getAEStates(), new IUnlistedProperty[] { AE_BLOCK_POS, AE_BLOCK_ACCESS} );
}
@Override
final public IBlockState getExtendedState(
public final IBlockState getExtendedState(
final IBlockState state,
final IBlockAccess world,
final BlockPos pos )
@@ -59,7 +59,7 @@ public class BlockCraftingUnit extends AEBaseTileBlock
public static final PropertyBool POWERED = PropertyBool.create( "powered" );
public static final PropertyBool FORMED = PropertyBool.create( "formed" );
final public CraftingUnitType type;
public final CraftingUnitType type;
public BlockCraftingUnit( final CraftingUnitType type )
{