Jump to content

Recommended Posts

Posted

My custom dimension in 1.7.10 is laggy, but was not previously in 1.7.2. Chunks struggle to load and blocks broken will reappear or drop after several seconds.

World Provider:

 

package yam.dimension.rainbow;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.entity.Entity;
import net.minecraft.util.MathHelper;
import net.minecraft.util.Vec3;
import net.minecraft.world.WorldProvider;
import net.minecraft.world.WorldProviderEnd;
import net.minecraft.world.WorldProviderHell;
import net.minecraft.world.biome.WorldChunkManagerHell;
import net.minecraft.world.chunk.Chunk;
import net.minecraft.world.chunk.IChunkProvider;
import net.minecraftforge.common.DimensionManager;
import yam.YetAnotherMod;

public class RainbowDimProvider extends WorldProvider {

private float[] colorsSunriseSunset = new float[4];

public void registerWorldChunkManager() {
	this.worldChunkMgr = new WorldChunkManagerHell(YetAnotherMod.biomeRainbow, 0.0F);
	this.dimensionId = YetAnotherMod.rainbowDimID;
}

public IChunkProvider createChunkGenerator() {
	return new ChunkProviderRainbow(this.worldObj, this.worldObj.getSeed());
    }

@Override
public String getDimensionName() {
	return "Rainbow Dimension";
}

public boolean canRespawnHere() {
	return false;
}

@SideOnly(Side.CLIENT)
    public boolean getWorldHasVoidParticles() {
        return false;
    }

@SideOnly(Side.CLIENT)
    public boolean isSkyColored() {
        return true;
    }
    
    @SideOnly(Side.CLIENT)
    public Vec3 drawClouds(float partialTicks) {
        return worldObj.drawCloudsBody(partialTicks);
    }

    @SideOnly(Side.CLIENT)
    public float getStarBrightness(float par1) {
        return 0.0F;
    }
    
    @SideOnly(Side.CLIENT)
    public boolean doesXZShowFog(int par1, int par2) {
        return true;
    }
    
    @SideOnly(Side.CLIENT)
    public Vec3 getSkyColor(Entity cameraEntity, float partialTicks) {
    	return Vec3.createVectorHelper(1.0D, 0.0D, 0.5D);
    }
    
    @SideOnly(Side.CLIENT)
    public Vec3 getFogColor(float par1, float par2) {
    	return Vec3.createVectorHelper(0.5D, 0.0D, 1.0D);
    }
    
    public boolean canDoLightning(Chunk chunk) {
        return false;
    }

    public boolean canDoRainSnowIce(Chunk chunk) {
        return false;
    }
    
    public double getMovementFactor() {
        return 1.0;
    }
    
    public String getWelcomeMessage() {
        return "Entering the Rainbow Dimension";
    }

    public String getDepartMessage() {
        return "Leaving the Rainbow Dimension";
    }
    
    protected void generateLightBrightnessTable()
    {
        for (int i = 0; i <= 15; ++i)
        {
        	this.lightBrightnessTable[i] = 0.0F+(i/14F);
        }
    }
    
    @SideOnly(Side.CLIENT)
    public float[] calcSunriseSunsetColors(float par1, float par2)
    {
        float f2 = 0.4F;
        float f3 = MathHelper.cos(par1 * (float)Math.PI * 2.0F) - 0.0F;
        float f4 = -0.0F;

        if (f3 >= f4 - f2 && f3 <= f4 + f2)
        {
            float f5 = (f3 - f4) / f2 * 0.5F + 0.5F;
            float f6 = 1.0F - (1.0F - MathHelper.sin(f5 * (float)Math.PI)) * 0.99F;
            f6 *= f6;
            this.colorsSunriseSunset[0] = 0.3F;
            this.colorsSunriseSunset[1] = f6;
            this.colorsSunriseSunset[2] = 0.3F;
            this.colorsSunriseSunset[3] = f6;
            return this.colorsSunriseSunset;
        }
        else
        {
            return null;
        }
    }
    
    public boolean isSurfaceWorld() {
    	return false;
    }

}

 

 

Chunk Provider:

 

package yam.dimension.rainbow;

import static net.minecraftforge.event.terraingen.InitMapGenEvent.EventType.CAVE;
import static net.minecraftforge.event.terraingen.PopulateChunkEvent.Populate.EventType.ANIMALS;

import java.util.List;
import java.util.Random;

import net.minecraft.block.Block;
import net.minecraft.block.BlockFalling;
import net.minecraft.entity.EnumCreatureType;
import net.minecraft.util.IProgressUpdate;
import net.minecraft.util.MathHelper;
import net.minecraft.world.ChunkPosition;
import net.minecraft.world.SpawnerAnimals;
import net.minecraft.world.World;
import net.minecraft.world.WorldType;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.world.chunk.Chunk;
import net.minecraft.world.chunk.IChunkProvider;
import net.minecraft.world.gen.MapGenBase;
import net.minecraft.world.gen.NoiseGenerator;
import net.minecraft.world.gen.NoiseGeneratorOctaves;
import net.minecraft.world.gen.NoiseGeneratorPerlin;
import net.minecraft.world.gen.feature.WorldGenDungeons;
import net.minecraft.world.gen.feature.WorldGenMinable;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.terraingen.ChunkProviderEvent;
import net.minecraftforge.event.terraingen.PopulateChunkEvent;
import net.minecraftforge.event.terraingen.TerrainGen;
import yam.YetAnotherMod;
import yam.biome.BiomeRainbow;
import yam.gen.rainbow.MapGenCavesRainbow;
import cpw.mods.fml.common.eventhandler.Event.Result;

public class ChunkProviderRainbow implements IChunkProvider
{
    /** RNG. */
    private Random rand;
    private NoiseGeneratorOctaves field_147431_j;
    private NoiseGeneratorOctaves field_147432_k;
    private NoiseGeneratorOctaves field_147429_l;
    private NoiseGeneratorPerlin field_147430_m;
    /** A NoiseGeneratorOctaves used in generating terrain */
    public NoiseGeneratorOctaves noiseGen5;
    /** A NoiseGeneratorOctaves used in generating terrain */
    public NoiseGeneratorOctaves noiseGen6;
    public NoiseGeneratorOctaves mobSpawnerNoise;
    /** Reference to the World object. */
    private World worldObj;
    private WorldType field_147435_p;
    private final double[] field_147434_q;
    private final float[] parabolicField;
    private double[] stoneNoise = new double[256];
    private MapGenBase caveGenerator = new MapGenCavesRainbow();
    /** The biomes that are used to generate the chunk */
    private BiomeGenBase[] biomesForGeneration;
    double[] field_147427_d;
    double[] field_147428_e;
    double[] field_147425_f;
    double[] field_147426_g;
    int[][] field_73219_j = new int[32][32];
    private static final String __OBFID = "CL_00000396";

    {
        caveGenerator = TerrainGen.getModdedMapGen(caveGenerator, CAVE);
    }    

    public ChunkProviderRainbow(World par1World, long par2) {
        this.worldObj = par1World;
        this.field_147435_p = par1World.getWorldInfo().getTerrainType();
        this.rand = new Random(par2);
        this.field_147431_j = new NoiseGeneratorOctaves(this.rand, 16);
        this.field_147432_k = new NoiseGeneratorOctaves(this.rand, 16);
        this.field_147429_l = new NoiseGeneratorOctaves(this.rand, ;
        this.field_147430_m = new NoiseGeneratorPerlin(this.rand, 4);
        this.noiseGen5 = new NoiseGeneratorOctaves(this.rand, 10);
        this.noiseGen6 = new NoiseGeneratorOctaves(this.rand, 16);
        this.mobSpawnerNoise = new NoiseGeneratorOctaves(this.rand, ;
        this.field_147434_q = new double[825];
        this.parabolicField = new float[25];

        for (int j = -2; j <= 2; ++j)
        {
            for (int k = -2; k <= 2; ++k)
            {
                float f = 10.0F / MathHelper.sqrt_float((float)(j * j + k * k) + 0.2F);
                this.parabolicField[j + 2 + (k + 2) * 5] = f;
            }
        }

        NoiseGenerator[] noiseGens = {field_147431_j, field_147432_k, field_147429_l, field_147430_m, noiseGen5, noiseGen6, mobSpawnerNoise};
        noiseGens = TerrainGen.getModdedNoiseGenerators(par1World, this.rand, noiseGens);
        this.field_147431_j = (NoiseGeneratorOctaves)noiseGens[0];
        this.field_147432_k = (NoiseGeneratorOctaves)noiseGens[1];
        this.field_147429_l = (NoiseGeneratorOctaves)noiseGens[2];
        this.field_147430_m = (NoiseGeneratorPerlin)noiseGens[3];
        this.noiseGen5 = (NoiseGeneratorOctaves)noiseGens[4];
        this.noiseGen6 = (NoiseGeneratorOctaves)noiseGens[5];
        this.mobSpawnerNoise = (NoiseGeneratorOctaves)noiseGens[6];
    }

    public void func_147424_a(int p_147424_1_, int p_147424_2_, Block[] p_147424_3_) {
        byte b0 = 63;
        this.biomesForGeneration = this.worldObj.getWorldChunkManager().getBiomesForGeneration(this.biomesForGeneration, p_147424_1_ * 4 - 2, p_147424_2_ * 4 - 2, 10, 10);
        this.func_147423_a(p_147424_1_ * 4, 0, p_147424_2_ * 4);

        for (int k = 0; k < 4; ++k)
        {
            int l = k * 5;
            int i1 = (k + 1) * 5;

            for (int j1 = 0; j1 < 4; ++j1)
            {
                int k1 = (l + j1) * 33;
                int l1 = (l + j1 + 1) * 33;
                int i2 = (i1 + j1) * 33;
                int j2 = (i1 + j1 + 1) * 33;

                for (int k2 = 0; k2 < 32; ++k2)
                {
                    double d0 = 0.125D;
                    double d1 = this.field_147434_q[k1 + k2];
                    double d2 = this.field_147434_q[l1 + k2];
                    double d3 = this.field_147434_q[i2 + k2];
                    double d4 = this.field_147434_q[j2 + k2];
                    double d5 = (this.field_147434_q[k1 + k2 + 1] - d1) * d0;
                    double d6 = (this.field_147434_q[l1 + k2 + 1] - d2) * d0;
                    double d7 = (this.field_147434_q[i2 + k2 + 1] - d3) * d0;
                    double d8 = (this.field_147434_q[j2 + k2 + 1] - d4) * d0;

                    for (int l2 = 0; l2 < 8; ++l2)
                    {
                        double d9 = 0.25D;
                        double d10 = d1;
                        double d11 = d2;
                        double d12 = (d3 - d1) * d9;
                        double d13 = (d4 - d2) * d9;

                        for (int i3 = 0; i3 < 4; ++i3)
                        {
                            int j3 = i3 + k * 4 << 12 | 0 + j1 * 4 << 8 | k2 * 8 + l2;
                            short short1 = 256;
                            j3 -= short1;
                            double d14 = 0.25D;
                            double d16 = (d11 - d10) * d14;
                            double d15 = d10 - d16;

                            for (int k3 = 0; k3 < 4; ++k3)
                            {
                                if ((d15 += d16) > 0.0D)
                                {
                                    p_147424_3_[j3 += short1] = ((BiomeRainbow)YetAnotherMod.biomeRainbow).stoneBlock;
                                }
                                else if (k2 * 8 + l2 < b0)
                                {
                                    p_147424_3_[j3 += short1] = ((BiomeRainbow)YetAnotherMod.biomeRainbow).seaBlock;
                                }
                                else
                                {
                                    p_147424_3_[j3 += short1] = null;
                                }
                            }

                            d10 += d12;
                            d11 += d13;
                        }

                        d1 += d5;
                        d2 += d6;
                        d3 += d7;
                        d4 += d8;
                    }
                }
            }
        }
    }

    public void replaceBlocksForBiome(int p_147422_1_, int p_147422_2_, Block[] p_147422_3_, byte[] p_147422_4_, BiomeGenBase[] p_147422_5_) {
        ChunkProviderEvent.ReplaceBiomeBlocks event = new ChunkProviderEvent.ReplaceBiomeBlocks(this, p_147422_1_, p_147422_2_, p_147422_3_, p_147422_4_, p_147422_5_);
        MinecraftForge.EVENT_BUS.post(event);
        if (event.getResult() == Result.DENY) return;

        double d0 = 0.03125D;
        this.stoneNoise = this.field_147430_m.func_151599_a(this.stoneNoise, (double)(p_147422_1_ * 16), (double)(p_147422_2_ * 16), 16, 16, d0 * 2.0D, d0 * 2.0D, 1.0D);

        for (int k = 0; k < 16; ++k)
        {
            for (int l = 0; l < 16; ++l)
            {
                BiomeGenBase biomegenbase = p_147422_5_[l + k * 16];
                biomegenbase.genTerrainBlocks(this.worldObj, this.rand, p_147422_3_, p_147422_4_, p_147422_1_ * 16 + k, p_147422_2_ * 16 + l, this.stoneNoise[l + k * 16]);
            }
        }
    }

    /**
     * loads or generates the chunk at the chunk location specified
     */
    public Chunk loadChunk(int par1, int par2) {
        return this.provideChunk(par1, par2);
    }

    /**
     * Will return back a chunk, if it doesn't exist and its not a MP client it will generates all the blocks for the
     * specified chunk from the map seed and chunk seed
     */
    public Chunk provideChunk(int par1, int par2) {
        this.rand.setSeed((long)par1 * 341873128712L + (long)par2 * 132897987541L);
        Block[] ablock = new Block[65536];
        byte[] abyte = new byte[65536];
        this.func_147424_a(par1, par2, ablock);
        this.biomesForGeneration = this.worldObj.getWorldChunkManager().loadBlockGeneratorData(this.biomesForGeneration, par1 * 16, par2 * 16, 16, 16);
        this.replaceBlocksForBiome(par1, par2, ablock, abyte, this.biomesForGeneration);
        this.caveGenerator.func_151539_a(this, this.worldObj, par1, par2, ablock);
        
        int posX = par1 * 16; int posZ = par2 * 16;
        
        Chunk chunk = new Chunk(this.worldObj, ablock, abyte, par1, par2);
        byte[] abyte1 = chunk.getBiomeArray();

        for (int k = 0; k < abyte1.length; ++k)
        {
            abyte1[k] = (byte)this.biomesForGeneration[k].biomeID;
        }

        chunk.generateSkylightMap();
        return chunk;
    }

    private void func_147423_a(int p_147423_1_, int p_147423_2_, int p_147423_3_) {
        double d0 = 684.412D;
        double d1 = 684.412D;
        double d2 = 512.0D;
        double d3 = 512.0D;
        this.field_147426_g = this.noiseGen6.generateNoiseOctaves(this.field_147426_g, p_147423_1_, p_147423_3_, 5, 5, 200.0D, 200.0D, 0.5D);
        this.field_147427_d = this.field_147429_l.generateNoiseOctaves(this.field_147427_d, p_147423_1_, p_147423_2_, p_147423_3_, 5, 33, 5, 8.555150000000001D, 4.277575000000001D, 8.555150000000001D);
        this.field_147428_e = this.field_147431_j.generateNoiseOctaves(this.field_147428_e, p_147423_1_, p_147423_2_, p_147423_3_, 5, 33, 5, 684.412D, 684.412D, 684.412D);
        this.field_147425_f = this.field_147432_k.generateNoiseOctaves(this.field_147425_f, p_147423_1_, p_147423_2_, p_147423_3_, 5, 33, 5, 684.412D, 684.412D, 684.412D);
        boolean flag1 = false;
        boolean flag = false;
        int l = 0;
        int i1 = 0;
        double d4 = 8.5D;

        for (int j1 = 0; j1 < 5; ++j1)
        {
            for (int k1 = 0; k1 < 5; ++k1)
            {
                float f = 0.0F;
                float f1 = 0.0F;
                float f2 = 0.0F;
                byte b0 = 2;
                BiomeGenBase biomegenbase = this.biomesForGeneration[j1 + 2 + (k1 + 2) * 10];

                for (int l1 = -b0; l1 <= b0; ++l1)
                {
                    for (int i2 = -b0; i2 <= b0; ++i2)
                    {
                        BiomeGenBase biomegenbase1 = this.biomesForGeneration[j1 + l1 + 2 + (k1 + i2 + 2) * 10];
                        float f3 = biomegenbase1.rootHeight;
                        float f4 = biomegenbase1.heightVariation;

                        if (this.field_147435_p == WorldType.AMPLIFIED && f3 > 0.0F)
                        {
                            f3 = 1.0F + f3 * 2.0F;
                            f4 = 1.0F + f4 * 4.0F;
                        }

                        float f5 = this.parabolicField[l1 + 2 + (i2 + 2) * 5] / (f3 + 2.0F);

                        if (biomegenbase1.rootHeight > biomegenbase.rootHeight)
                        {
                            f5 /= 2.0F;
                        }

                        f += f4 * f5;
                        f1 += f3 * f5;
                        f2 += f5;
                    }
                }

                f /= f2;
                f1 /= f2;
                f = f * 0.9F + 0.1F;
                f1 = (f1 * 4.0F - 1.0F) / 8.0F;
                double d12 = this.field_147426_g[i1] / 8000.0D;

                if (d12 < 0.0D)
                {
                    d12 = -d12 * 0.3D;
                }

                d12 = d12 * 3.0D - 2.0D;

                if (d12 < 0.0D)
                {
                    d12 /= 2.0D;

                    if (d12 < -1.0D)
                    {
                        d12 = -1.0D;
                    }

                    d12 /= 1.4D;
                    d12 /= 2.0D;
                }
                else
                {
                    if (d12 > 1.0D)
                    {
                        d12 = 1.0D;
                    }

                    d12 /= 8.0D;
                }

                ++i1;
                double d13 = (double)f1;
                double d14 = (double)f;
                d13 += d12 * 0.2D;
                d13 = d13 * 8.5D / 8.0D;
                double d5 = 8.5D + d13 * 4.0D;

                for (int j2 = 0; j2 < 33; ++j2)
                {
                    double d6 = ((double)j2 - d5) * 12.0D * 128.0D / 256.0D / d14;

                    if (d6 < 0.0D)
                    {
                        d6 *= 4.0D;
                    }

                    double d7 = this.field_147428_e[l] / 512.0D;
                    double d8 = this.field_147425_f[l] / 512.0D;
                    double d9 = (this.field_147427_d[l] / 10.0D + 1.0D) / 2.0D;
                    double d10 = MathHelper.denormalizeClamp(d7, d8, d9) - d6;

                    if (j2 > 29)
                    {
                        double d11 = (double)((float)(j2 - 29) / 3.0F);
                        d10 = d10 * (1.0D - d11) + -10.0D * d11;
                    }

                    this.field_147434_q[l] = d10;
                    ++l;
                }
            }
        }
    }

    /**
     * Checks to see if a chunk exists at x, y
     */
    public boolean chunkExists(int par1, int par2) {
        return true;
    }

    /**
     * Populates chunk with ores etc etc
     */
    public void populate(IChunkProvider par1IChunkProvider, int par2, int par3)
    {
        BlockFalling.fallInstantly = true;
        int k = par2 * 16;
        int l = par3 * 16;
        BiomeGenBase biomegenbase = YetAnotherMod.biomeRainbow;
        this.rand.setSeed(this.worldObj.getSeed());
        long i1 = this.rand.nextLong() / 2L * 2L + 1L;
        long j1 = this.rand.nextLong() / 2L * 2L + 1L;
        this.rand.setSeed((long)par2 * i1 + (long)par3 * j1 ^ this.worldObj.getSeed());
        boolean flag = false;

        MinecraftForge.EVENT_BUS.post(new PopulateChunkEvent.Pre(par1IChunkProvider, worldObj, rand, par2, par3, flag));

        int k1;
        int l1;
        int i2;

        biomegenbase.decorate(this.worldObj, this.rand, k, l);
        if (TerrainGen.populate(par1IChunkProvider, worldObj, rand, par2, par3, flag, ANIMALS))
        {
        SpawnerAnimals.performWorldGenSpawning(this.worldObj, biomegenbase, k + 8, l + 8, 16, 16, this.rand);
        }
        k += 8;
        l += 8;

        MinecraftForge.EVENT_BUS.post(new PopulateChunkEvent.Post(par1IChunkProvider, worldObj, rand, par2, par3, flag));

        BlockFalling.fallInstantly = false;
    }

    /**
     * Two modes of operation: if passed true, save all Chunks in one go.  If passed false, save up to two chunks.
     * Return true if all chunks have been saved.
     */
    public boolean saveChunks(boolean par1, IProgressUpdate par2IProgressUpdate) {
        return true;
    }

    /**
     * Save extra data not associated with any Chunk.  Not saved during autosave, only during world unload.  Currently
     * unimplemented.
     */
    public void saveExtraData() {}

    /**
     * Unloads chunks that are marked to be unloaded. This is not guaranteed to unload every such chunk.
     */
    public boolean unloadQueuedChunks() {
        return false;
    }

    /**
     * Returns if the IChunkProvider supports saving.
     */
    public boolean canSave() {
        return true;
    }

    /**
     * Converts the instance data to a readable string.
     */
    public String makeString() {
        return "RandomLevelSource";
    }

    /**
     * Returns a list of creatures of the specified type that can spawn at the given location.
     */
    public List getPossibleCreatures(EnumCreatureType par1EnumCreatureType, int par2, int par3, int par4) {
        BiomeGenBase biomegenbase = this.worldObj.getBiomeGenForCoords(par2, par4);
	return biomegenbase.getSpawnableList(par1EnumCreatureType);
    }

    public ChunkPosition func_147416_a(World p_147416_1_, String p_147416_2_, int p_147416_3_, int p_147416_4_, int p_147416_5_) {
	return null;
}

    public int getLoadedChunkCount() {
        return 0;
    }

    public void recreateStructures(int par1, int par2) {}
}

 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Please read the FAQ for how to properly post logs.   Also, this is a fabric log, not a forge log, you would probably get better results posting where fabric support is given.
    • Thank you, TileEntity. For anyone who happens to see this and has a similar issue, however unlikely that is, the issue is Aether II. Apparently it relies on Phosphor, even though it's not supported.
    • https://forums.minecraftforge.net/topic/155182-trying-to-play-1201-in-multimc-with-forge-mods-but-this-error-all-the-time/
    • [12:18:10] [main/INFO]: Loading Minecraft 1.20.1 with Fabric Loader 0.16.10 [12:18:10] [ForkJoinPool-1-worker-8/WARN]: Mod brewinandchewin uses the version fabric-2.1.5+1.20.1 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-5/WARN]: Mod io_netty_netty-codec-http uses the version 4.1.82.Final which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'Final'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-5/WARN]: Mod io_netty_netty-handler-proxy uses the version 4.1.82.Final which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'Final'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-10/WARN]: The mod "dungeons_arise" contains invalid entries in its mod json: - Unsupported root entry "credits" at line 12 column 12 [12:18:10] [ForkJoinPool-1-worker-5/WARN]: Mod io_netty_netty-codec-socks uses the version 4.1.82.Final which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'Final'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-6/WARN]: Mod magna uses the version ${version} which isn't compatible with Loader's extended semantic version format (Could not parse version number component '${version}'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-10/WARN]: Mod netherdepthsupgrade uses the version fabric-3.1.5-1.20 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-8/WARN]: Mod tesseract uses the version 1.0.35a which isn't compatible with Loader's extended semantic version format (Could not parse version number component '35a'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-8/WARN]: Mod theorcs uses the version fabric-1.20.x-1.0 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-8/WARN]: Mod totw_modded uses the version fabric-1.20.1-1.0.4 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-6/WARN]: Mod trowel uses the version [email protected] which isn't compatible with Loader's extended semantic version format (Could not parse version number component '1@1'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-8/WARN]: Mod triqueapi uses the version mc1.20.1-1.1.0 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'mc1'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [ForkJoinPool-1-worker-10/WARN]: Mod com_github_jagrosh_discordipc uses the version a8d6631cc9 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'a8d6631cc9'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version [12:18:10] [main/WARN]: Warnings were found!  - Mod 'AntiGhost' (antighost) 1.20-fabric0.83.0-1.1.5 recommends any version of modmenu, which is missing!      - You should install any version of modmenu for the optimal experience.  - Mod 'Create Enchantment Industry' (create_enchantment_industry) 1.2.16 recommends version 0.5.1-f-build.1335+mc1.20.1 of mod 'Create' (create), but only the wrong version is present: 0.5.1-f-build.1388+mc1.20.1!      - You should install version 0.5.1-f-build.1335+mc1.20.1 of mod 'Create' (create) for the optimal experience.  - Mod 'Custom Portals' (customportals) 3.3.1 recommends version 7.0.0 or later of modmenu, which is missing!      - You should install version 7.0.0 or later of modmenu for the optimal experience.  - Mod 'Deepslate Cutting' (deepslatecutting) 1.7.0 recommends any version of modmenu, which is missing!      - You should install any version of modmenu for the optimal experience.  - Mod 'Create: Steam 'n' Rails' (railways) 1.5.3+fabric-mc1.20.1 recommends version 0.5.1-f-build.1335+mc1.20.1 of mod 'Create' (create), but only the wrong version is present: 0.5.1-f-build.1388+mc1.20.1!      - You should install version 0.5.1-f-build.1335+mc1.20.1 of mod 'Create' (create) for the optimal experience.  - Mod 'Reacharound' (reacharound) 1.1.2 recommends any version of modmenu, which is missing!      - You should install any version of modmenu for the optimal experience.  - Mod 'Reese's Sodium Options' (reeses-sodium-options) 1.7.2+mc1.20.1-build.101 recommends version 0.4.2 or later of sodium-extra, which is missing!      - You should install version 0.4.2 or later of sodium-extra for the optimal experience.  - Mod 'Simply Swords' (simplyswords) 1.54.0-1.20.1 recommends version 1.7.2 or later of bettercombat, which is missing!      - You should install version 1.7.2 or later of bettercombat for the optimal experience. [12:18:10] [main/INFO]: Loading 592 mods:     - accelerateddecay 3.0.1+mc1.20.1     - ad_astra 1.15.18        \-- javazoom_jlayer 1.0.1     - ad_astra_giselle_addon 6.6     - additionallanterns 1.1.1     - advanced_runtime_resource_pack 0.8.1     - advancednetherite 2.0.3-1.20.1     - advancementplaques 1.4.11     - adventurez 1.4.20     - ae2 15.0.24        \-- team_reborn_energy 3.0.0     - ae2mtfix 2.0.0+1.20.1+fabric     - ae2wtlib 15.2.1-fabric     - almostunified 1.20.1-0.9.2     - ambientsounds 5.3.9     - animal_feeding_trough 1.0.3+1.20.1     - another_furniture 1.20.1-3.0.1     - antighost 1.20-fabric0.83.0-1.1.5        \-- crowdin-translate 1.4+1.19.3     - anvilrepairing 4.0.3     - appbot 1.5.0     - appleskin 2.5.1+mc1.20     - aquamirae 6     - archers 1.1.0+1.20.1        \-- com_github_zsoltmolnarrr_tinyconfig 2.3.2     - architectury 9.2.14     - argonauts 1.0.8        \-- placeholder-api 2.1.1+1.20     - artifacts 9.3.1        |-- cardinal-components-base 5.2.2        |-- cardinal-components-entity 5.2.2        |-- expandability 9.0.0        \-- step-height-entity-attribute 1.2.0     - asynclocator 1.3.0     - athena 3.1.2     - attributefix 21.0.4     - authme 7.0.2+1.20     - auto-workstations 1.0-rc.21     - autoconfig1u 3.4.0     - axolotlitemfix 1.1.7     - azurelibarmor 2.0.3     - badpackets 0.4.3     - bakery 1.1.8     - balm-fabric 7.2.2     - bankstorage 1.0.2     - beachparty 1.1.4     - beaconoverhaul 1.8.4+1.20        \-- reach-entity-attributes 2.4.0     - beautify 1.1.0+1.20     - bedbenefits 13.0.3     - bellsandwhistles 0.4.5     - besmirchment 1.20.1-4        |-- impersonate 2.10.2        |    \-- fabric-permissions-api-v0 0.2-SNAPSHOT        |-- playerabilitylib 1.8.0        |-- reach-entity-attributes 2.4.0        \-- terraform-wood-api-v1 7.0.3     - betterarcheology 1.1.6-1.20.1     - betterdeserttemples 1.20-Fabric-3.0.3        \-- org_reflections_reflections 0.10.2     - betterdungeons 1.20-Fabric-4.0.3     - betterendisland 1.20-Fabric-2.0.6     - betterfortresses 1.20-Fabric-2.0.6     - betterjungletemples 1.20-Fabric-2.0.4     - bettermineshafts 1.20-Fabric-4.0.4     - betteroceanmonuments 1.20-Fabric-3.0.4     - betterpingdisplay 1.1.1     - bettersmithingtable 1.1.0     - betterstats 3.9.5+fabric-1.20.1        \-- tcdcommons 3.9.4+fabric-1.20.1     - betterstrongholds 1.20-Fabric-4.0.3     - betterthanbunnies 1.3.0     - betterthanllamas 1.2.0     - bettertrims 2.2.3        \-- mixinsquared 0.1.1     - betterwitchhuts 1.20-Fabric-3.0.3     - bewitchment 1.20-8        |-- impersonate 2.10.2        |    \-- fabric-permissions-api-v0 0.2-SNAPSHOT        |-- playerabilitylib 1.8.0        |-- reach-entity-attributes 2.4.0        \-- terraform-wood-api-v1 7.0.3     - bewitchment-rei 1.0.0     - bhmenu 2.4.1     - blockus 2.7.12+1.20.1     - bloomingnature 1.0.6     - blur 3.1.0        \-- satin 1.13.0     - bonezone 3.0.5     - bookshelf 20.1.9     - bosses_of_mass_destruction 1.7.5-1.20.1        |-- maelstrom_library 1.6.1-1.20        \-- multipart_entities 1.5-1.20     - botania 1.20.1-443-FABRIC        |-- fiber 0.23.0-2        |-- reach-entity-attributes 2.4.0        \-- step-height-entity-attribute 1.2.0     - botarium 2.3.3        \-- team_reborn_energy 3.0.0     - brewery 1.1.5     - brewinandchewin fabric-2.1.5+1.20.1        \-- mm 2.3     - builtinservers 2.1+1.20     - bushierflowers 0.0.3-1.20.1     - bwncr 3.17.0     - cadmus 1.0.7        \-- common-protection-api 1.0.0     - calibrated 1.3.1-beta.1+1.20        |-- blockreachapi 1.0.0-beta.1+1.20        \-- datacriteria 1.0.1+1.20     - cardinal-components 5.2.2        |-- cardinal-components-block 5.2.2        |-- cardinal-components-chunk 5.2.2        |-- cardinal-components-item 5.2.2        |-- cardinal-components-level 5.2.2        |-- cardinal-components-scoreboard 5.2.2        \-- cardinal-components-world 5.2.2     - catalogue 1.8.0     - charmofundying 6.5.0+1.20.1        \-- spectrelib 0.13.15+1.20.1     - chat_heads 0.10.32     - chefsdelight 1.0.3-fabric-1.20.1     - cherishedworlds 6.1.6+1.20.1     - chipped 3.0.4     - chunky 1.3.138     - clean_tooltips 1.0     - cloth-config 11.1.118        \-- cloth-basic-math 0.6.1     - clumps 12.0.0.3     - colorfulhearts 4.0.4        |-- com_electronwill_night-config_core 3.6.7        \-- com_electronwill_night-config_toml 3.6.7     - colytra 6.2.2+1.20.1     - completeconfig 2.5.2        |-- completeconfig-base 2.5.2        |-- completeconfig-gui-cloth 2.5.2        \-- completeconfig-gui-yacl 2.5.2     - compressed_blocks 1.0.0     - computercraft 1.110.1        |-- cc_tweaked_cobalt 0.9.2        |-- com_jcraft_jzlib 1.1.3        |-- io_netty_netty-codec-http 4.1.82.Final        |-- io_netty_netty-codec-socks 4.1.82.Final        \-- io_netty_netty-handler-proxy 4.1.82.Final     - connectedglass 1.1.11     - connectiblechains 2.2.1+1.20.1     - controlling 12.0.2     - convenientdecor 0.4.1        \-- omega-config 1.4.0+1.20.1     - cookingforblockheads 16.0.3     - copycats 1.20.1-1.2.6     - corgilib 4.0.1.1     - couplings 1.9.5+1.20     - coxinhautilities 1.4.13+1.20.1     - craftingtweaks 18.2.3     - crawl 0.12.0        \-- mm 2.3     - create 0.5.1-f-build.1388+mc1.20.1        |-- com_google_code_findbugs_jsr305 3.0.2        |-- flywheel 0.6.10-2        |-- forgeconfigapiport 8.0.0        |-- milk 1.2.60        |    \-- dripstone_fluid_lib 3.0.2        |-- porting_lib_accessors 2.3.0+1.20.1        |    \-- porting_lib_core 2.3.0+1.20.1        |-- porting_lib_base 2.3.0+1.20.1        |    |-- porting_lib_common 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    |-- porting_lib_fluids 2.3.0+1.20.1        |    |-- porting_lib_lazy_registration 2.3.0+1.20.1        |    |-- porting_lib_mixin_extensions 2.3.0+1.20.1        |    \-- reach-entity-attributes 2.4.0        |-- porting_lib_brewing 2.3.0+1.20.1        |    \-- porting_lib_core 2.3.0+1.20.1        |-- porting_lib_client_events 2.3.0+1.20.1        |    \-- porting_lib_core 2.3.0+1.20.1        |-- porting_lib_entity 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- porting_lib_mixin_extensions 2.3.0+1.20.1        |-- porting_lib_extensions 2.3.0+1.20.1        |    |-- porting_lib_common 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- reach-entity-attributes 2.4.0        |-- porting_lib_models 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    |-- porting_lib_fluids 2.3.0+1.20.1        |    \-- porting_lib_model_loader 2.3.0+1.20.1        |-- porting_lib_networking 2.3.0+1.20.1        |    \-- porting_lib_core 2.3.0+1.20.1        |-- porting_lib_obj_loader 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- porting_lib_model_loader 2.3.0+1.20.1        |-- porting_lib_tags 3.0        |    \-- porting_lib_core 2.3.0+1.20.1        |-- porting_lib_tool_actions 2.3.0+1.20.1        |    \-- porting_lib_core 2.3.0+1.20.1        |-- porting_lib_transfer 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- porting_lib_fluids 2.3.0+1.20.1        |-- reach-entity-attributes 2.4.0        \-- registrate-fabric 1.3.62-MC1.20.1             |-- porting_lib_data 2.1.1090+1.20             \-- porting_lib_model_generators 2.1.1090+1.20                  \-- porting_lib_model_materials 2.1.1090+1.20     - create_enchantment_industry 1.2.16        \-- create_dragon_lib 1.4.2     - create_jetpack 4.2.0        \-- flightlib 2.1.0     - createaddition 1.2.3     - createdeco 2.0.1-1.20.1-fabric     - createfood 1.0.3     - creativecore 2.11.24        \-- net_minecraftforge_eventbus 6.0.3     - creeperoverhaul 3.0.2     - croptopia 3.0.3     - ctov 3.4.2     - customportals 3.3.1        \-- cardinal-components-base 5.2.2     - dark-loading-screen 1.6.14     - darkmodeeverywhere 1.20.1-1.2.2        \-- porting_lib_config 2.1.1108+1.20             \-- porting_lib_gametest 2.1.1108+1.20     - darkutils 17.0.3     - decorative_blocks 4.1.3     - deepslatecutting 1.7.0     - defaultoptions 18.0.1     - diet 2.1.1+1.20.1     - display_case 1.0.8     - distractingtrims 2.0.3     - dml-refabricated 0.5.16-BETA+1.20.1        |-- dml-refabricated-base 0.5.16-BETA+1.20.1        |    |-- ktdatataglib 1.6.7+1.20.1        |    \-- libgui 8.1.1+1.20.1        |         |-- jankson 6.0.0+j1.2.3        |         |    \-- blue_endless_jankson 1.2.3        |         \-- libninepatch 1.2.0        |-- dml-refabricated-modular-armor 0.5.16-BETA+1.20.1        |    |-- ktdatataglib 1.6.7+1.20.1        |    |-- libgui 8.1.1+1.20.1        |    |    |-- jankson 6.0.0+j1.2.3        |    |    |    \-- blue_endless_jankson 1.2.3        |    |    \-- libninepatch 1.2.0        |    \-- playerabilitylib 1.8.0        |-- dmlsimulacrum 0.5.16-BETA+1.20.1        |    \-- ktdatataglib 1.6.7+1.20.1        \-- ktdatataglib 1.6.7+1.20.1     - doapi 1.2.9     - dogslie 1.2.0     - dragonloot 1.1.4     - duckling 3.0.0     - ducky-periphs 1.20.1-1.3.1        |-- org_jblas_jblas 1.2.5        |-- org_joml_joml 1.10.5        \-- serialization_hooks 0.4.99999     - dummmmmmy 1.20-1.8.14     - dungeons_arise 2.1.58     - dungeons_arise_seven_seas 1.0.2     - ecologics 2.2.0     - elytraslot 6.3.0+1.20.1     - embeddium 0.3.11+mc1.20.1        |-- indium 1.99.99        \-- sodium 0.5.8     - enchdesc 17.0.14     - endermanoverhaul 1.0.4     - ends_delight 1.0.1     - enhancedcelestials 5.0.0.2     - enhancedworkbenches 1.1.1+1.20.1        \-- yet_another_config_lib_v3 3.2.2+1.20             |-- com_twelvemonkeys_common_common-image 3.10.0-SNAPSHOT             |-- com_twelvemonkeys_common_common-io 3.10.0-SNAPSHOT             |-- com_twelvemonkeys_common_common-lang 3.10.0-SNAPSHOT             |-- com_twelvemonkeys_imageio_imageio-core 3.10.0-SNAPSHOT             |-- com_twelvemonkeys_imageio_imageio-metadata 3.10.0-SNAPSHOT             |-- com_twelvemonkeys_imageio_imageio-webp 3.10.0-SNAPSHOT             |-- org_quiltmc_parsers_gson 0.2.1             \-- org_quiltmc_parsers_json 0.2.1     - entangled 1.3.17     - epherolib 1.2.0     - equipmentcompare 1.3.8     - experiencebugfix 2     - extendedae 1.20-0.1.3-fabric        \-- configuration 2.2.0     - extraordinary_extra_totems 1.0.3     - extrasponges 1.5.0     - fabric-api 0.92.0+1.20.1        |-- fabric-api-base 0.4.31+1802ada577        |-- fabric-api-lookup-api-v1 1.6.36+1802ada577        |-- fabric-biome-api-v1 13.0.13+1802ada577        |-- fabric-block-api-v1 1.0.11+1802ada577        |-- fabric-block-view-api-v2 1.0.1+1802ada577        |-- fabric-blockrenderlayer-v1 1.1.41+1802ada577        |-- fabric-client-tags-api-v1 1.1.2+1802ada577        |-- fabric-command-api-v1 1.2.34+f71b366f77        |-- fabric-command-api-v2 2.2.13+1802ada577        |-- fabric-commands-v0 0.2.51+df3654b377        |-- fabric-containers-v0 0.1.64+df3654b377        |-- fabric-content-registries-v0 4.0.11+1802ada577        |-- fabric-convention-tags-v1 1.5.5+1802ada577        |-- fabric-crash-report-info-v1 0.2.19+1802ada577        |-- fabric-data-attachment-api-v1 1.0.0+de0fd6d177        |-- fabric-data-generation-api-v1 12.3.4+1802ada577        |-- fabric-dimensions-v1 2.1.54+1802ada577        |-- fabric-entity-events-v1 1.6.0+1c78457f77        |-- fabric-events-interaction-v0 0.6.2+1802ada577        |-- fabric-events-lifecycle-v0 0.2.63+df3654b377        |-- fabric-game-rule-api-v1 1.0.40+1802ada577        |-- fabric-item-api-v1 2.1.28+1802ada577        |-- fabric-item-group-api-v1 4.0.12+1802ada577        |-- fabric-key-binding-api-v1 1.0.37+1802ada577        |-- fabric-keybindings-v0 0.2.35+df3654b377        |-- fabric-lifecycle-events-v1 2.2.22+1802ada577        |-- fabric-loot-api-v2 1.2.1+1802ada577        |-- fabric-loot-tables-v1 1.1.45+9e7660c677        |-- fabric-message-api-v1 5.1.9+1802ada577        |-- fabric-mining-level-api-v1 2.1.50+1802ada577        |-- fabric-model-loading-api-v1 1.0.3+1802ada577        |-- fabric-models-v0 0.4.2+9386d8a777        |-- fabric-networking-api-v1 1.3.11+1802ada577        |-- fabric-networking-v0 0.3.51+df3654b377        |-- fabric-object-builder-api-v1 11.1.3+1802ada577        |-- fabric-particles-v1 1.1.2+1802ada577        |-- fabric-recipe-api-v1 1.0.21+1802ada577        |-- fabric-registry-sync-v0 2.3.3+1802ada577        |-- fabric-renderer-api-v1 3.2.1+1802ada577        |-- fabric-renderer-indigo 1.5.1+1802ada577        |-- fabric-renderer-registries-v1 3.2.46+df3654b377        |-- fabric-rendering-data-attachment-v1 0.3.37+92a0d36777        |-- fabric-rendering-fluids-v1 3.0.28+1802ada577        |-- fabric-rendering-v0 1.1.49+df3654b377        |-- fabric-rendering-v1 3.0.8+1802ada577        |-- fabric-resource-conditions-api-v1 2.3.8+1802ada577        |-- fabric-resource-loader-v0 0.11.10+1802ada577        |-- fabric-screen-api-v1 2.0.8+1802ada577        |-- fabric-screen-handler-api-v1 1.3.30+1802ada577        |-- fabric-sound-api-v1 1.0.13+1802ada577        |-- fabric-transfer-api-v1 3.3.4+1802ada577        \-- fabric-transitive-access-wideners-v1 4.3.1+1802ada577     - fabric-language-kotlin 1.10.19+kotlin.1.9.23        |-- org_jetbrains_kotlin_kotlin-reflect 1.9.23        |-- org_jetbrains_kotlin_kotlin-stdlib 1.9.23        |-- org_jetbrains_kotlin_kotlin-stdlib-jdk7 1.9.23        |-- org_jetbrains_kotlin_kotlin-stdlib-jdk8 1.9.23        |-- org_jetbrains_kotlinx_atomicfu-jvm 0.23.2        |-- org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm 1.8.0        |-- org_jetbrains_kotlinx_kotlinx-coroutines-jdk8 1.8.0        |-- org_jetbrains_kotlinx_kotlinx-datetime-jvm 0.5.0        |-- org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm 1.6.3        |-- org_jetbrains_kotlinx_kotlinx-serialization-core-jvm 1.6.3        \-- org_jetbrains_kotlinx_kotlinx-serialization-json-jvm 1.6.3     - fabricloader 0.16.10        \-- mixinextras 0.4.1     - fakerlib 0.1.3        \-- mixinsquared 0.1.1     - fancymenu 3.1.2        \-- com_github_keksuccino_japng 0.5.3     - farmersdelight 1.20.1-1.4.3     - farmersrespite 2.3.4     - farmingforblockheads 14.0.2     - fastpaintings 1.20-1.2.5     - ferritecore 6.0.1     - findme 3.2.1     - fishofthieves 3.0.4     - formations 1.0.2     - formationsnether 1.0.3     - framework 0.6.16        \-- org_javassist_javassist 3.29.2-GA     - friendlyfire 18.0.6     - frightsdelight 1.20.1-1.0.1     - ftblibrary 2001.1.5     - ftbultimine 2001.1.4     - fullstackwatchdog 1.0.1+1.19.2-fabric     - fusion 1.1.1     - fwaystones 3.3.2+mc1.20.1     - gag 3.0.0-build.10     - gazebo 1.1.1+1.20.1     - geckolib 4.4.4        \-- com_eliotlash_mclib_mclib 20     - geode_plus 1.2.4        \-- paragon 3.0.2             |-- com_moandjiezana_toml_toml4j 0.7.2             \-- org_yaml_snakeyaml 1.27     - glassential 2.0.1     - go-fish 1.6.3+1.20.1     - graveyard 3.0     - guardvillagers 2.0.9-1.20.1     - handcrafted 3.0.6     - heracles 1.1.12        \-- hermes 1.6.0     - herbalbrews 1.0.6     - hopobetterruinedportal 1.3.7     - iceberg 1.1.18     - immediatelyfast 1.2.11+1.20.4        \-- net_lenni0451_reflect 1.3.2     - immersive_armors 1.6.1+1.20.1     - indrev 1.16.5-BETA-Hotfix        |-- libgui 8.1.1+1.20.1        |    |-- jankson 6.0.0+j1.2.3        |    |    \-- blue_endless_jankson 1.2.3        |    \-- libninepatch 1.2.0        |-- noindium 1.1.0+1.19        |-- step-height-entity-attribute 1.2.0        \-- team_reborn_energy 3.0.0     - industrialreborn 1.20.1-1.1     - inventorysorter 1.9.0-1.20        \-- kyrptconfig 1.5.6-1.20     - invoke 0.2.2     - iris 1.6.17        |-- io_github_douira_glsl-transformer 2.0.0-pre13        |-- org_anarres_jcpp 1.4.14        \-- org_antlr_antlr4-runtime 4.11.1     - iron-jetpacks 0.4.7        \-- team_reborn_energy 3.0.0     - ironchests 5.0.2     - itemcollectors 1.1.9     - itemfavorites 1.0.4+1.20.1     - jamlib 0.6.1+1.20.x     - java 17     - javd 5.0.1+mc1.20.1     - jewelry 1.2.4+1.20.1     - jumpoverfences 1.0-SNAPSHOT     - kibe 1.10.1-BETA+1.20        \-- playerabilitylib 1.8.0     - konkrete 1.8.1     - kubejs 2001.6.4-build.138     - lazydfu 0.1.3     - legendarytooltips 1.4.5     - letsdoaddon-compat 1.2.0     - letsdoaddon-structures 1.7.1     - leveltextfix 7.0.2     - libz 1.0.3        |-- com_fasterxml_jackson_core_jackson-annotations 2.15.2        |-- com_fasterxml_jackson_core_jackson-core 2.15.2        \-- com_fasterxml_jackson_core_jackson-databind 2.15.2     - lightoverlay 8.0.0     - lithium 0.11.2     - lithostitched 1.1.5     - lmft 1.0.2+1.20     - logbegone 1.0.8     - lolmcv 1.5.0     - lootbags 2.0.0     - lootjs 1.20.1-2.11.0     - lootr 0.7.30.77     - maxhealthfix 12.0.2     - mcwbridges 2.1.0     - mcwdoors 1.1.0     - mcwfences 1.1.1     - mcwlights 1.0.6     - mcwpaths 1.0.4     - mcwroofs 2.3.0     - mcwtrpdoors 1.1.2     - mcwwindows 2.2.1     - meadow 1.3.7     - measurements 2.0.0     - megacells 2.3.3-1.20.1     - megane 20.1.1        |-- megane-applied-energistics-2 20.1.1        |-- megane-create 20.1.1        |-- megane-deep-mob-learning-simulacrum 20.1.1        |-- megane-industrial-revolution 20.1.1        |-- megane-kibe 20.1.1        |-- megane-modern-dynamics 20.1.1        |-- megane-powah 20.1.1        |-- megane-reborn-core 20.1.1        \-- megane-tech-reborn 20.1.1     - melody 1.0.3     - menulogue 1.20.1-1.0.4     - merequester 1.20.1-1.1.4     - mi_sound_addon 1.0.2-1.20.1        \-- magna 1.10.1+1.20.1     - midnightlib 1.4.1     - mighty_mail 1.0.14     - minecells 1.7.2     - minecraft 1.20.1     - minerally 1.20.2-1.1     - modern_industrialization 1.8.3        |-- magna 1.10.1+1.20.1        |-- playerabilitylib 1.8.0        \-- team_reborn_energy 3.0.0     - moderndynamics 0.7.0-beta        \-- team_reborn_energy 3.0.0     - modernfix 5.15.0+mc1.20.1     - mooblooms 1.6.2     - moonlight 1.20-2.11.9     - more_armor_trims 1.1.3-1.20.1     - moremobvariants 1.2.2     - morevillagers 5.0.0     - mousetweaks 2.25     - mythicupgrades 2.4.2+mc1.20.1     - naturalist 4.0.3     - naturescompass 1.20.1-2.2.3-fabric     - nears 2.0.4     - netherdepthsupgrade fabric-3.1.5-1.20     - netherportalfix 13.0.1     - nethervinery 1.2.9     - nochatreports 1.20.1-v2.2.2     - numismatic-overhaul 0.2.14+1.20        \-- stacc 1.7.0     - obscure_api 16     - obsidianboat 3.1.4+mc1.20.1     - onlyhammers 1.20.1-0.6     - openloader 19.0.3     - owo 0.11.2+1.20     - packedup 1.0.30     - packetfixer 1.2.8     - paginatedadvancements 2.3.0     - patchouli 1.20.1-84-FABRIC        \-- fiber 0.23.0-2     - pehkui 3.8.0+1.14.4-1.20.4        \-- kanos_config 0.4.1+1.14.4-1.19.4     - perfectplushies 1.9.0        \-- forgeconfigapiport 8.0.0     - peripheralium 0.6.15     - peripheralworks 1.4.3     - phantasm 0.1     - piercingpaxels 1.0.12     - pigpen 15.0.2     - playdate 2.0.0     - player-animator 1.0.2-rc1+1.20     - pling 1.8.0     - polyeng 0.1.0-1.20.1     - polymorph 0.49.3+1.20.1        \-- spectrelib 0.13.15+1.20.1     - portable_tables 2.4     - powah 5.0.5     - prism 1.0.5     - projectile_damage 3.2.2+1.20.1     - prometheus 1.2.4     - quad 1.1.3     - railways 1.5.3+fabric-mc1.20.1        \-- mm 2.3     - ranged_weapon_api 1.0.0+1.20.1     - rare-ice 0.6.0     - reacharound 1.1.2     - reborncore 5.8.7        \-- team_reborn_energy 3.0.0     - rechiseled 1.1.5+b     - rechiseledcreate 1.0.2     - reeses-sodium-options 1.7.2+mc1.20.1-build.101     - regions_unexplored 0.5.5+1.20.1        \-- completeconfig-gui-cloth 2.5.2     - repurposed_structures 7.1.13+1.20.1-fabric     - resourcefulconfig 2.1.2     - resourcefullib 2.1.24        |-- com_teamresourceful_bytecodecs 1.0.2        \-- com_teamresourceful_yabn 1.0.3     - respawnablepets 1.20-1     - respitecreators 1.2.0     - revelationary 1.3.7+1.20.1     - rhino 2001.2.2-build.18     - rightclickharvest 3.2.3+1.19.x-1.20.1-fabric     - riverredux 0.3.1     - roughlyenoughitems 12.0.684        \-- error_notifier 1.0.9     - roughlyenoughprofessions 2.0.2     - roughlyenoughresources 2.9.0     - runelic 18.0.2     - runes 0.9.11+1.20.1     - sawmill 1.20-1.3.11     - sdrp 4.0.3-build.40+mc1.20.1        |-- com_github_jagrosh_discordipc a8d6631cc9        |-- com_kohlschutter_junixsocket_junixsocket-common 2.6.2        |-- com_kohlschutter_junixsocket_junixsocket-native-common 2.6.2        \-- org_json_json 20210307     - searchables 1.0.2     - sihywtcamd 1.7.5+1.20.1     - simplemagnets 1.1.10     - simplyswords 1.54.0-1.20.1        \-- spruceui 5.0.0+1.20     - skeletalremains 1.4.2     - sliceanddice 3.1.0        \-- forgeconfigapiport 8.0.0     - smwyg 1.1.1     - spark 1.10.53     - spectrum 1.7.7        |-- arrowhead 1.2.0-1.19.4        |-- fractal 1.1.0        |-- matchbooks 0.1.0        |-- org_jgrapht_jgrapht-core 1.5.1        |-- org_jheaps_jheaps 0.13        |-- reach-entity-attributes 2.4.0        \-- reverb 1.0.0     - spectrumjetpacks 1.0.3+1.20.1     - specutils 1.0.1        \-- cardinal-components-base 5.2.2     - spell_engine 0.13.2+1.20.1        \-- com_github_zsoltmolnarrr_tinyconfig 2.3.2     - spell_power 0.9.19+1.20.1     - sprinklerz 0.5.1     - status-effect-bars 1.0.3     - strangeberries 2.3.2     - strongersnowballs 13.0.2     - structory 1.3.4     - structory_towers 1.0.6     - structure_pool_api 1.0+1.20.1     - supermartijn642configlib 1.1.8+a     - supermartijn642corelib 1.1.17     - supplementaries 1.20-2.8.7        \-- mixinsquared 0.1.1     - techreborn 5.8.7        \-- team_reborn_energy 3.0.0     - tempad 2.3.3     - terrablender 3.0.1.4     - tesseract 1.0.35a     - thaumon 2.2.0+1.20.1     - the_bumblezone 7.3.1+1.20.1-fabric     - theorcs fabric-1.20.x-1.0     - timeoutout 1.0.3+1.19.1     - tinycoal 1.1.4     - tipsmod 12.0.5     - toolkit 3.0.3-build.25+mc1.20.1     - toolstats 16.0.8     - totw_additions 1.3     - totw_modded fabric-1.20.1-1.0.4     - trade_cycling 1.20.1-1.0.7     - tramplenomore 13.0.3     - trashcans 1.0.18        \-- team_reborn_energy 3.0.0     - trashslot 15.1.0     - travelersbackpack 1.20.1-9.1.9     - trenzalore 3.3.10        |-- com_unrealdinnerbone_unrealconfig-core 12.3.4        \-- com_unrealdinnerbone_unrealconfig-gson 12.3.4     - trimeffects 1.1.1-fabric     - trinkets 3.7.2     - triqueapi mc1.20.1-1.1.0     - trofers 5.0.1     - trowel [email protected]     - twigs 3.1.0     - utilitybelt 1.3.6+1.20.1        \-- tutorial-lib 1.1.2+1.20.x     - variantsandventures 1.0.1     - villager-hats 1.6.2+1.20     - villagersplus 3.1     - vinery 1.4.14     - visuality 0.7.1+1.20     - voidz 1.0.11     - wands 2.6.9-release     - wardentools 2.4.0+mc1.20.1     - whatthebucket 11.0.3     - wirelesschargers 1.0.9        \-- team_reborn_energy 3.0.0     - wits 1.1.0+1.20.1-fabric     - wizards 1.1.1+1.20.1        \-- com_github_zsoltmolnarrr_tinyconfig 2.3.2     - wthit 8.9.0     - xaerominimap 24.0.3     - xaeroworldmap 1.38.1     - yeetusexperimentus 2.3.1-build.6+mc1.20.1     - yigd 2.0.0-beta.11        |-- fabric-permissions-api-v0 0.2-SNAPSHOT        \-- libgui 8.1.1+1.20.1             |-- jankson 6.0.0+j1.2.3             |    \-- blue_endless_jankson 1.2.3             \-- libninepatch 1.2.0     - yungsapi 1.20-Fabric-4.0.4     - yungsbridges 1.20-Fabric-4.0.3     - yungsextras 1.20-Fabric-4.0.3     - zenith 1.1.7-1.20.1        |-- mm 2.3        |-- porting_lib_base 2.3.0+1.20.1        |    |-- porting_lib_common 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    |-- porting_lib_fluids 2.3.0+1.20.1        |    |-- porting_lib_lazy_registration 2.3.0+1.20.1        |    |-- porting_lib_mixin_extensions 2.3.0+1.20.1        |    \-- reach-entity-attributes 2.4.0        |-- porting_lib_loot 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- porting_lib_lazy_registration 2.3.0+1.20.1        |-- porting_lib_tags 3.0        |    \-- porting_lib_core 2.3.0+1.20.1        \-- porting_lib_utility 2.3.0+1.20.1             \-- porting_lib_core 2.3.0+1.20.1     - zenith_attributes 0.2.2        |-- additionalentityattributes 1.7.1+1.20.0        |-- cardinal-components-base 5.2.2        |-- cardinal-components-entity 5.2.2        |-- playerabilitylib 1.8.0        |-- porting_lib_attributes 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- reach-entity-attributes 2.4.0        |-- porting_lib_entity 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- porting_lib_mixin_extensions 2.3.0+1.20.1        |-- porting_lib_extensions 2.3.0+1.20.1        |    |-- porting_lib_common 2.3.0+1.20.1        |    |-- porting_lib_core 2.3.0+1.20.1        |    \-- reach-entity-attributes 2.4.0        \-- reach-entity-attributes 2.4.0 [12:18:12] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/M:/MultiMC/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar Service=Knot/Fabric Env=CLIENT  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.