diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/CavesModifier.java b/src/main/java/com/github/halotroop/litecraft/world/gen/modifier/CavesModifier.java similarity index 96% rename from src/main/java/com/github/halotroop/litecraft/world/gen/CavesModifier.java rename to src/main/java/com/github/halotroop/litecraft/world/gen/modifier/CavesModifier.java index a1edd57..b1de6cf 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/CavesModifier.java +++ b/src/main/java/com/github/halotroop/litecraft/world/gen/modifier/CavesModifier.java @@ -1,11 +1,11 @@ -package com.github.halotroop.litecraft.world.gen; +package com.github.halotroop.litecraft.world.gen.modifier; import java.util.Random; import com.github.halotroop.litecraft.types.block.*; import com.github.halotroop.litecraft.util.noise.OctaveSimplexNoise; import com.github.halotroop.litecraft.world.BlockAccess; -import com.github.halotroop.litecraft.world.gen.modifier.WorldModifier; +import com.github.halotroop.litecraft.world.gen.WorldGenConstants; public class CavesModifier implements WorldModifier, WorldGenConstants {