remove todos and hopefully fix some compiling?

This commit is contained in:
James Seibel
2026-02-05 18:11:44 -06:00
parent 0ec9e60396
commit 02a309cd34
6 changed files with 10 additions and 17 deletions
@@ -29,7 +29,7 @@ import org.spongepowered.asm.mixin.Mixin;
*
* @see MixinUtilBackgroundThread
*/
@Mixin(net.minecraft.Util.class) // TODO we should allow version specific mixins so we don't have to create dummy mixins that exist for all MC versions
@Mixin(net.minecraft.Util.class)
public class MixinTracingExecutor
{
@@ -10,11 +10,16 @@ import com.seibel.distanthorizons.api.interfaces.world.IDhApiLevelWrapper;
import com.seibel.distanthorizons.api.objects.data.DhApiChunk;
import com.seibel.distanthorizons.api.objects.data.DhApiTerrainDataPoint;
import com.seibel.distanthorizons.common.wrappers.world.ServerLevelWrapper;
import net.minecraft.core.BlockPos;
import net.minecraft.core.QuartPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.level.chunk.ChunkAccess;
#if MC_VER >= MC_1_18_2
import net.minecraft.core.BlockPos;
import net.minecraft.core.QuartPos;
#endif
import java.util.ArrayList;
public class TestChunkWorldGenerator extends AbstractDhApiChunkWorldGenerator