mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
removed: BlackLotus (per spec)
This commit is contained in:
parent
915bec64c7
commit
c2693b9b21
4 changed files with 0 additions and 14 deletions
|
@ -6,7 +6,6 @@ import de.ellpeck.actuallyadditions.common.blocks.building.CrystalClusterBlock;
|
|||
import de.ellpeck.actuallyadditions.common.blocks.building.WallBlock;
|
||||
import de.ellpeck.actuallyadditions.common.blocks.functional.*;
|
||||
import de.ellpeck.actuallyadditions.common.blocks.misc.TinyTorchBlock;
|
||||
import de.ellpeck.actuallyadditions.common.blocks.plant.BlackLotusBlock;
|
||||
import de.ellpeck.actuallyadditions.common.blocks.plant.PlantBlock;
|
||||
import de.ellpeck.actuallyadditions.common.blocks.types.Crystals;
|
||||
import de.ellpeck.actuallyadditions.common.blocks.types.LaserRelays;
|
||||
|
@ -29,7 +28,6 @@ public class ActuallyBlocks {
|
|||
public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, ActuallyAdditions.MOD_ID);
|
||||
|
||||
// Plant!
|
||||
public static final RegistryObject<Block> BLACK_LOTUS = BLOCKS.register("black_lotus_block", BlackLotusBlock::new);
|
||||
public static final RegistryObject<Block> RICE = BLOCKS.register("rice_block", () -> new PlantBlock(1, 2));
|
||||
public static final RegistryObject<Block> CANOLA = BLOCKS.register("canola_block", () -> new PlantBlock(2, 3));
|
||||
public static final RegistryObject<Block> FLAX = BLOCKS.register("flax_block", () -> new PlantBlock(2, 4));
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
package de.ellpeck.actuallyadditions.common.blocks.plant;
|
||||
|
||||
import de.ellpeck.actuallyadditions.common.blocks.ActuallyBlock;
|
||||
import net.minecraft.block.material.Material;
|
||||
|
||||
public class BlackLotusBlock extends ActuallyBlock {
|
||||
public BlackLotusBlock() {
|
||||
super(Properties.create(Material.ROCK));
|
||||
}
|
||||
}
|
|
@ -54,7 +54,6 @@ public class GeneratorBlockStates extends BlockStateProvider {
|
|||
buildCubeAll(ActuallyBlocks.CRYSTAL_EMPOWERED_VOID);
|
||||
buildCubeAll(ActuallyBlocks.CRYSTAL_EMPOWERED_EMERADIC);
|
||||
buildCubeAll(ActuallyBlocks.CRYSTAL_EMPOWERED_ENORI);
|
||||
buildCubeAll(ActuallyBlocks.BLACK_LOTUS);
|
||||
buildCubeAll(ActuallyBlocks.ENERGY_LASER_RELAY);
|
||||
buildCubeAll(ActuallyBlocks.ENERGY_LASER_RELAY_ADVANCED);
|
||||
buildCubeAll(ActuallyBlocks.ENERGY_LASER_RELAY_EXTREME);
|
||||
|
|
|
@ -13,7 +13,6 @@ public class GeneratorLanguage extends LanguageProvider {
|
|||
@Override
|
||||
protected void addTranslations() {
|
||||
// Blocks (kill me)
|
||||
addBlock(ActuallyBlocks.BLACK_LOTUS, "Black lotus");
|
||||
addBlock(ActuallyBlocks.RICE, "Rice");
|
||||
addBlock(ActuallyBlocks.CANOLA, "Canola");
|
||||
addBlock(ActuallyBlocks.FLAX, "Flax");
|
||||
|
|
Loading…
Reference in a new issue