Err too much.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package appeng.debug;
|
||||
|
||||
import java.util.EnumSet;
|
||||
|
||||
import net.minecraft.block.material.Material;
|
||||
import appeng.block.AEBaseBlock;
|
||||
import appeng.core.features.AEFeature;
|
||||
|
||||
public class BlockItemGen extends AEBaseBlock
|
||||
{
|
||||
|
||||
public BlockItemGen() {
|
||||
super( BlockItemGen.class, Material.iron );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setTileEntiy( TileItemGen.class );
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user