From 48596c676842a18f9675d242d281cf1e61401cab Mon Sep 17 00:00:00 2001 From: Mechalopa <92443696+Mechalopa@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:31:03 +0900 Subject: [PATCH] Move directory.. --- .../github/mechalopa/jafohana/registry/ModBiomeFeatures.java | 2 +- .../jafohana/world/level/levelgen/feature/LayeringFeature.java | 2 +- .../configurations/LayeringFeatureConfiguration.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/{ => feature}/configurations/LayeringFeatureConfiguration.java (92%) diff --git a/src/main/java/com/github/mechalopa/jafohana/registry/ModBiomeFeatures.java b/src/main/java/com/github/mechalopa/jafohana/registry/ModBiomeFeatures.java index 98f3a44..a043372 100644 --- a/src/main/java/com/github/mechalopa/jafohana/registry/ModBiomeFeatures.java +++ b/src/main/java/com/github/mechalopa/jafohana/registry/ModBiomeFeatures.java @@ -3,9 +3,9 @@ import java.util.function.Supplier; import com.github.mechalopa.jafohana.JAFOhana; -import com.github.mechalopa.jafohana.world.level.levelgen.configurations.LayeringFeatureConfiguration; import com.github.mechalopa.jafohana.world.level.levelgen.feature.JadeVinesFeature; import com.github.mechalopa.jafohana.world.level.levelgen.feature.LayeringFeature; +import com.github.mechalopa.jafohana.world.level.levelgen.feature.configurations.LayeringFeatureConfiguration; import net.minecraft.core.registries.Registries; import net.minecraft.world.level.levelgen.feature.Feature; diff --git a/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/LayeringFeature.java b/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/LayeringFeature.java index fd94080..91fce1d 100644 --- a/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/LayeringFeature.java +++ b/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/LayeringFeature.java @@ -1,6 +1,6 @@ package com.github.mechalopa.jafohana.world.level.levelgen.feature; -import com.github.mechalopa.jafohana.world.level.levelgen.configurations.LayeringFeatureConfiguration; +import com.github.mechalopa.jafohana.world.level.levelgen.feature.configurations.LayeringFeatureConfiguration; import com.mojang.serialization.Codec; import net.minecraft.core.BlockPos; diff --git a/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/configurations/LayeringFeatureConfiguration.java b/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/configurations/LayeringFeatureConfiguration.java similarity index 92% rename from src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/configurations/LayeringFeatureConfiguration.java rename to src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/configurations/LayeringFeatureConfiguration.java index c6bd27c..c14365c 100644 --- a/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/configurations/LayeringFeatureConfiguration.java +++ b/src/main/java/com/github/mechalopa/jafohana/world/level/levelgen/feature/configurations/LayeringFeatureConfiguration.java @@ -1,4 +1,4 @@ -package com.github.mechalopa.jafohana.world.level.levelgen.configurations; +package com.github.mechalopa.jafohana.world.level.levelgen.feature.configurations; import java.util.stream.Stream;