diff --git a/core/src/main/java/com/seibel/lod/core/dataObjects/fullData/FullDataPointIdMap.java b/core/src/main/java/com/seibel/lod/core/dataObjects/fullData/FullDataPointIdMap.java
index e498b08d8..d9dee29fb 100644
--- a/core/src/main/java/com/seibel/lod/core/dataObjects/fullData/FullDataPointIdMap.java
+++ b/core/src/main/java/com/seibel/lod/core/dataObjects/fullData/FullDataPointIdMap.java
@@ -1,6 +1,5 @@
package com.seibel.lod.core.dataObjects.fullData;
-import com.seibel.lod.core.dataObjects.transformers.FullToColumnTransformer;
import com.seibel.lod.core.dependencyInjection.SingletonInjector;
import com.seibel.lod.core.wrapperInterfaces.IWrapperFactory;
import com.seibel.lod.core.wrapperInterfaces.block.IBlockStateWrapper;
diff --git a/core/src/main/java/com/seibel/lod/core/enums/worldGeneration/EWorldGenerationStep.java b/core/src/main/java/com/seibel/lod/core/enums/worldGeneration/EWorldGenerationStep.java
deleted file mode 100644
index fb5e22ce9..000000000
--- a/core/src/main/java/com/seibel/lod/core/enums/worldGeneration/EWorldGenerationStep.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.seibel.lod.core.enums.worldGeneration;
-
-/**
- * EMPTY,
- * STRUCTURE_START,
- * STRUCTURE_REFERENCE,
- * BIOMES,
- * NOISE,
- * SURFACE,
- * CARVERS,
- * LIQUID_CARVERS,
- * FEATURES,
- * LIGHT,
- *
- * @author James Seibel
- * @version 2022-7-25
- */
-public enum EWorldGenerationStep
-{
- EMPTY,
- STRUCTURE_START,
- STRUCTURE_REFERENCE,
- BIOMES,
- NOISE,
- SURFACE,
- CARVERS,
- LIQUID_CARVERS,
- FEATURES,
- LIGHT,
-}
diff --git a/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java b/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java
index 048db4b60..171ae5d87 100644
--- a/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java
+++ b/core/src/main/java/com/seibel/lod/core/generation/BatchGenerator.java
@@ -20,6 +20,7 @@
package com.seibel.lod.core.generation;
import com.seibel.lod.api.enums.worldGeneration.EDhApiWorldGenThreadMode;
+import com.seibel.lod.api.enums.worldGeneration.EDhApiWorldGenerationStep;
import com.seibel.lod.api.interfaces.override.worldGenerator.IDhApiWorldGenerator;
import com.seibel.lod.core.interfaces.dependencyInjection.IOverrideInjector;
import com.seibel.lod.core.level.IDhLevel;
@@ -31,8 +32,7 @@ import com.seibel.lod.core.util.BitShiftUtil;
import com.seibel.lod.core.util.LodUtil;
import com.seibel.lod.core.wrapperInterfaces.IWrapperFactory;
import com.seibel.lod.core.wrapperInterfaces.chunk.IChunkWrapper;
-import com.seibel.lod.core.wrapperInterfaces.worldGeneration.AbstractBatchGenerationEnvionmentWrapper;
-import com.seibel.lod.core.wrapperInterfaces.worldGeneration.AbstractBatchGenerationEnvionmentWrapper.EGenerationStep;
+import com.seibel.lod.core.wrapperInterfaces.worldGeneration.AbstractBatchGenerationEnvironmentWrapper;
import org.apache.logging.log4j.Logger;
import java.util.concurrent.CompletableFuture;
@@ -47,7 +47,7 @@ public class BatchGenerator implements IDhApiWorldGenerator
private static final IWrapperFactory FACTORY = SingletonInjector.INSTANCE.get(IWrapperFactory.class);
private static final Logger LOGGER = DhLoggerBuilder.getLogger();
- public AbstractBatchGenerationEnvionmentWrapper generationGroup;
+ public AbstractBatchGenerationEnvironmentWrapper generationGroup;
public IDhLevel targetDhLevel;
@@ -98,24 +98,24 @@ public class BatchGenerator implements IDhApiWorldGenerator
@Override
public CompletableFuture generateChunks(int chunkPosMinX, int chunkPosMinZ, byte granularity, byte targetDataDetail, EDhApiDistantGeneratorMode generatorMode, Consumer