mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
54 lines
1.8 KiB
Java
54 lines
1.8 KiB
Java
|
package de.ellpeck.naturesaura.blocks;
|
||
|
|
||
|
import de.ellpeck.naturesaura.Helper;
|
||
|
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
|
||
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityOakGenerator;
|
||
|
import net.minecraft.block.BlockSapling;
|
||
|
import net.minecraft.block.SoundType;
|
||
|
import net.minecraft.block.material.Material;
|
||
|
import net.minecraft.util.math.BlockPos;
|
||
|
import net.minecraft.world.World;
|
||
|
import net.minecraftforge.common.MinecraftForge;
|
||
|
import net.minecraftforge.event.terraingen.SaplingGrowTreeEvent;
|
||
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
||
|
|
||
|
import java.util.Random;
|
||
|
|
||
|
public class BlockOakGenerator extends BlockContainerImpl {
|
||
|
|
||
|
public BlockOakGenerator() {
|
||
|
super(Material.WOOD, "oak_generator", TileEntityOakGenerator.class, "oak_generator");
|
||
|
this.setHardness(2F);
|
||
|
this.setSoundType(SoundType.WOOD);
|
||
|
|
||
|
MinecraftForge.TERRAIN_GEN_BUS.register(this);
|
||
|
}
|
||
|
|
||
|
@SubscribeEvent
|
||
|
public void onTreeGrow(SaplingGrowTreeEvent event) {
|
||
|
World world = event.getWorld();
|
||
|
BlockPos pos = event.getPos();
|
||
|
if (!world.isRemote && NaturesAuraAPI.TYPE_OVERWORLD.isPresentInWorld(world)
|
||
|
&& world.getBlockState(pos).getBlock() instanceof BlockSapling) {
|
||
|
Helper.getTileEntitiesInArea(world, pos, 10, tile -> {
|
||
|
if (!(tile instanceof TileEntityOakGenerator))
|
||
|
return false;
|
||
|
|
||
|
Random rand = event.getRand();
|
||
|
if (rand.nextInt(10) == 0)
|
||
|
((TileEntityOakGenerator) tile).scheduledBigTrees.add(pos);
|
||
|
|
||
|
long seed;
|
||
|
do {
|
||
|
seed = rand.nextLong();
|
||
|
rand.setSeed(seed);
|
||
|
}
|
||
|
while (rand.nextInt(10) == 0);
|
||
|
rand.setSeed(seed);
|
||
|
|
||
|
return true;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|