From 209333989ed29679fa2bdb15ae47f651cfb19aac Mon Sep 17 00:00:00 2001 From: thatsIch Date: Mon, 18 May 2015 00:31:16 +0200 Subject: [PATCH] Typ in chisldQuartz --- src/main/java/appeng/core/api/definitions/ApiBlocks.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/appeng/core/api/definitions/ApiBlocks.java b/src/main/java/appeng/core/api/definitions/ApiBlocks.java index 25c465d89..651f3b7d6 100644 --- a/src/main/java/appeng/core/api/definitions/ApiBlocks.java +++ b/src/main/java/appeng/core/api/definitions/ApiBlocks.java @@ -164,7 +164,7 @@ public final class ApiBlocks implements IBlocks final BlockQuartzGrowthAccelerator cga = new BlockQuartzGrowthAccelerator(); final BlockQuartzTorch quartzTorch = new BlockQuartzTorch(); final BlockQuartz quartzBlock = new BlockQuartz(); - final BlockQuartzChiseled chiseldQuartz = new BlockQuartzChiseled(); + final BlockQuartzChiseled chiseledQuartz = new BlockQuartzChiseled(); this.orientables = ImmutableSet.of( lightDetector, quartzPillar, skyStone, cga, quartzTorch ); @@ -173,7 +173,7 @@ public final class ApiBlocks implements IBlocks this.matrixFrame = constructor.registerBlockDefinition( new BlockMatrixFrame() ); this.quartz = constructor.registerBlockDefinition( quartzBlock ); this.quartzPillar = constructor.registerBlockDefinition( quartzPillar ); - this.quartzChiseled = constructor.registerBlockDefinition( chiseldQuartz ); + this.quartzChiseled = constructor.registerBlockDefinition( chiseledQuartz ); this.quartzGlass = constructor.registerBlockDefinition( new BlockQuartzGlass() ); this.quartzVibrantGlass = constructor.registerBlockDefinition( new BlockQuartzLamp() ); this.quartzTorch = constructor.registerBlockDefinition( quartzTorch ); @@ -226,7 +226,7 @@ public final class ApiBlocks implements IBlocks this.quartzStair = constructor.registerBlockDefinition( new QuartzStairBlock( quartzBlock ) ); - this.chiseledQuartzStair = constructor.registerBlockDefinition( new ChiseledQuartzStairBlock( chiseldQuartz ) ); + this.chiseledQuartzStair = constructor.registerBlockDefinition( new ChiseledQuartzStairBlock( chiseledQuartz ) ); this.quartzPillarStair = constructor.registerBlockDefinition( new QuartzPillarStairBlock( quartzPillar ) );