Added light detector item and block model.

This commit is contained in:
Sebastian Hartte
2016-08-27 18:45:25 +02:00
parent 81984b3ad7
commit 77cb3d8b92
4 changed files with 106 additions and 1 deletions
@@ -343,7 +343,9 @@ public final class ApiBlocks implements IBlocks
.build();
this.molecularAssembler = registry.block( "molecular_assembler", BlockMolecularAssembler::new ).features( AEFeature.MolecularAssembler ).build();
this.lightDetector = registry.block( "light_detector", BlockLightDetector::new ).features( AEFeature.LightDetector ).build();
this.lightDetector = registry.block( "light_detector", BlockLightDetector::new ).features( AEFeature.LightDetector )
.useCustomItemModel()
.build();
this.paint = registry.block( "paint", BlockPaint::new ).features( AEFeature.PaintBalls ).build();
this.skyStoneStairs = makeStairs( "sky_stone_stairs", registry, this.skyStoneBlock() );