Skip to content

Commit

Permalink
Code Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Builderdog841 committed Jun 1, 2024
1 parent c0e01b6 commit de4aa32
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import net.builderdog.ancient_aether.world.feature.AncientAetherFeatures;
import net.builderdog.ancient_aether.world.structure.AncientAetherStructureProcessors;
import net.builderdog.ancient_aether.world.structure.AncientAetherStructureTypes;
import net.builderdog.ancient_aether.world.tree.AncientAetherFoliagePlacers;
import net.builderdog.ancient_aether.world.tree.AncientAetherTreeDecorators;
import net.builderdog.ancient_aether.world.tree.foliage.AncientAetherFoliagePlacers;
import net.builderdog.ancient_aether.world.tree.decorator.AncientAetherTreeDecorators;
import net.minecraft.network.chat.Component;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.server.packs.PackType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ public BlockState getStateForPlacement(BlockPlaceContext context) {
return state(context.getLevel(), context.getClickedPos(), defaultBlockState());
}



protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> blockBlockStateBuilder) {
blockBlockStateBuilder.add(LENGTH);
blockBlockStateBuilder.add(TYPE);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package net.builderdog.ancient_aether.world.tree;
package net.builderdog.ancient_aether.world.tree.decorator;

import net.builderdog.ancient_aether.AncientAether;
import net.builderdog.ancient_aether.world.tree.decorator.GrapeVineDecorator;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.world.level.levelgen.feature.treedecorators.TreeDecoratorType;
import net.neoforged.neoforge.registries.DeferredHolder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.mojang.serialization.Codec;
import net.builderdog.ancient_aether.block.blocktype.GrapeVineBlock;
import net.builderdog.ancient_aether.world.tree.AncientAetherTreeDecorators;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.util.RandomSource;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.builderdog.ancient_aether.world.tree;
package net.builderdog.ancient_aether.world.tree.foliage;

import net.builderdog.ancient_aether.AncientAether;
import net.builderdog.ancient_aether.world.tree.foliage.PineFoliagePlacer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.mojang.serialization.Codec;
import com.mojang.serialization.codecs.RecordCodecBuilder;
import net.builderdog.ancient_aether.world.tree.AncientAetherFoliagePlacers;
import net.minecraft.core.BlockPos;
import net.minecraft.util.RandomSource;
import net.minecraft.util.valueproviders.IntProvider;
Expand Down

0 comments on commit de4aa32

Please sign in to comment.