Jump to content

TileEntity Map is missing.


gmod622

Recommended Posts

Hey all!

 

So I have a custom tile here, and it seems to crash when I try to open it with

Caused by: java.lang.RuntimeException: class com.lambda.PlentifulMisc.blocks.tile.TileEnityCrystallizer is missing a mapping! This is a bug!

at

	super.writeToNBT(parentNBTTagCompound); // The super call is required to save and load the tiles location

and

	writeToNBT(nbtTagCompound);

 

Can't really figure out the problem though.

 

here is the tile

package com.lambda.PlentifulMisc.blocks.tile;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.FurnaceRecipes;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagIntArray;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.network.NetworkManager;
import net.minecraft.network.play.server.SPacketUpdateTileEntity;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.tileentity.TileEntityFurnace;
import net.minecraft.util.ITickable;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.TextComponentString;
import net.minecraft.util.text.TextComponentTranslation;
import net.minecraft.world.EnumSkyBlock;

import javax.annotation.Nullable;
import java.util.Arrays;

/**
* User: brandon3055
* Date: 06/01/2015
*
* TileInventorySmelting is an advanced sided inventory that works like a vanilla furnace except that it has 5 input and output slots,
* 4 fuel slots and cooks at up to four times the speed.
* The input slots are used sequentially rather than in parallel, i.e. the first slot cooks, then the second, then the third, etc
* The fuel slots are used in parallel.  The more slots burning in parallel, the faster the cook time.
* The code is heavily based on TileEntityFurnace.
*/
public class TileEnityCrystallizer extends TileEntity implements IInventory, ITickable {
// Create and initialize the itemStacks variable that will store store the itemStacks
public static final int FUEL_SLOTS_COUNT = 4;
public static final int INPUT_SLOTS_COUNT = 5;
public static final int OUTPUT_SLOTS_COUNT = 5;
public static final int TOTAL_SLOTS_COUNT = FUEL_SLOTS_COUNT + INPUT_SLOTS_COUNT + OUTPUT_SLOTS_COUNT;

public static final int FIRST_FUEL_SLOT = 0;
public static final int FIRST_INPUT_SLOT = FIRST_FUEL_SLOT + FUEL_SLOTS_COUNT;
public static final int FIRST_OUTPUT_SLOT = FIRST_INPUT_SLOT + INPUT_SLOTS_COUNT;

private ItemStack[] itemStacks = new ItemStack[TOTAL_SLOTS_COUNT];

/** The number of burn ticks remaining on the current piece of fuel */
private int [] burnTimeRemaining = new int[FUEL_SLOTS_COUNT];
/** The initial fuel value of the currently burning fuel (in ticks of burn duration) */
private int [] burnTimeInitialValue = new int[FUEL_SLOTS_COUNT];

/**The number of ticks the current item has been cooking*/
private short cookTime;
/**The number of ticks required to cook an item*/
private static final short COOK_TIME_FOR_COMPLETION = 200;  // vanilla value is 200 = 10 seconds

private int cachedNumberOfBurningSlots = -1;

/**
 * Returns the amount of fuel remaining on the currently burning item in the given fuel slot.
 * @fuelSlot the number of the fuel slot (0..3)
 * @return fraction remaining, between 0 - 1
 */
public double fractionOfFuelRemaining(int fuelSlot)
{
	if (burnTimeInitialValue[fuelSlot] <= 0 ) return 0;
	double fraction = burnTimeRemaining[fuelSlot] / (double)burnTimeInitialValue[fuelSlot];
	return MathHelper.clamp_double(fraction, 0.0, 1.0);
}

/**
 * return the remaining burn time of the fuel in the given slot
 * @param fuelSlot the number of the fuel slot (0..3)
 * @return seconds remaining
 */
public int secondsOfFuelRemaining(int fuelSlot)
{
	if (burnTimeRemaining[fuelSlot] <= 0 ) return 0;
	return burnTimeRemaining[fuelSlot] / 20; // 20 ticks per second
}

/**
 * Get the number of slots which have fuel burning in them.
 * @return number of slots with burning fuel, 0 - FUEL_SLOTS_COUNT
 */
public int numberOfBurningFuelSlots()
{
	int burningCount = 0;
	for (int burnTime : burnTimeRemaining) {
		if (burnTime > 0) ++burningCount;
	}
	return burningCount;
}

/**
 * Returns the amount of cook time completed on the currently cooking item.
 * @return fraction remaining, between 0 - 1
 */
public double fractionOfCookTimeComplete()
{
	double fraction = cookTime / (double)COOK_TIME_FOR_COMPLETION;
	return MathHelper.clamp_double(fraction, 0.0, 1.0);
}

// This method is called every tick to update the tile entity, i.e.
// - see if the fuel has run out, and if so turn the furnace "off" and slowly uncook the current item (if any)
// - see if any of the items have finished smelting
// It runs both on the server and the client.
@Override
public void update() {
	// If there is nothing to smelt or there is no room in the output, reset cookTime and return
	if (canSmelt()) {
		int numberOfFuelBurning = burnFuel();

		// If fuel is available, keep cooking the item, otherwise start "uncooking" it at double speed
		if (numberOfFuelBurning > 0) {
			cookTime += numberOfFuelBurning;
		}	else {
			cookTime -= 2;
		}

		if (cookTime < 0) cookTime = 0;

		// If cookTime has reached maxCookTime smelt the item and reset cookTime
		if (cookTime >= COOK_TIME_FOR_COMPLETION) {
			smeltItem();
			cookTime = 0;
		}
	}	else {
		cookTime = 0;
	}

	// when the number of burning slots changes, we need to force the block to re-render, otherwise the change in
	//   state will not be visible.  Likewise, we need to force a lighting recalculation.
	// The block update (for renderer) is only required on client side, but the lighting is required on both, since
	//    the client needs it for rendering and the server needs it for crop growth etc
	int numberBurning = numberOfBurningFuelSlots();
	if (cachedNumberOfBurningSlots != numberBurning) {
		cachedNumberOfBurningSlots = numberBurning;
		if (worldObj.isRemote) {
        IBlockState iblockstate = this.worldObj.getBlockState(pos);
        final int FLAGS = 3;  // I'm not sure what these flags do, exactly.
        worldObj.notifyBlockUpdate(pos, iblockstate, iblockstate, FLAGS);
		}
		worldObj.checkLightFor(EnumSkyBlock.BLOCK, pos);
	}
}

/**
 * 	for each fuel slot: decreases the burn time, checks if burnTimeRemaining = 0 and tries to consume a new piece of fuel if one is available
 * @return the number of fuel slots which are burning
 */
private int burnFuel() {
	int burningCount = 0;
	boolean inventoryChanged = false;
	// Iterate over all the fuel slots
	for (int i = 0; i < FUEL_SLOTS_COUNT; i++) {
		int fuelSlotNumber = i + FIRST_FUEL_SLOT;
		if (burnTimeRemaining[i] > 0) {
			--burnTimeRemaining[i];
			++burningCount;
		}
		if (burnTimeRemaining[i] == 0) {
			if (itemStacks[fuelSlotNumber] != null && getItemBurnTime(itemStacks[fuelSlotNumber]) > 0) {
				// If the stack in this slot is not null and is fuel, set burnTimeRemaining & burnTimeInitialValue to the
				// item's burn time and decrease the stack size
				burnTimeRemaining[i] = burnTimeInitialValue[i] = getItemBurnTime(itemStacks[fuelSlotNumber]);
				--itemStacks[fuelSlotNumber].stackSize;
				++burningCount;
				inventoryChanged = true;
			// If the stack size now equals 0 set the slot contents to the items container item. This is for fuel
			// items such as lava buckets so that the bucket is not consumed. If the item dose not have
			// a container item getContainerItem returns null which sets the slot contents to null
				if (itemStacks[fuelSlotNumber].stackSize == 0) {
					itemStacks[fuelSlotNumber] = itemStacks[fuelSlotNumber].getItem().getContainerItem(itemStacks[fuelSlotNumber]);
				}
			}
		}
	}
	if (inventoryChanged) markDirty();
	return burningCount;
}

/**
 * Check if any of the input items are smeltable and there is sufficient space in the output slots
 * @return true if smelting is possible
 */
private boolean canSmelt() {return smeltItem(false);}

/**
 * Smelt an input item into an output slot, if possible
 */
private void smeltItem() {smeltItem(true);}

/**
 * checks that there is an item to be smelted in one of the input slots and that there is room for the result in the output slots
 * If desired, performs the smelt
 * @param performSmelt if true, perform the smelt.  if false, check whether smelting is possible, but don't change the inventory
 * @return false if no items can be smelted, true otherwise
 */
private boolean smeltItem(boolean performSmelt)
{
	Integer firstSuitableInputSlot = null;
	Integer firstSuitableOutputSlot = null;
	ItemStack result = null;

	// finds the first input slot which is smeltable and whose result fits into an output slot (stacking if possible)
	for (int inputSlot = FIRST_INPUT_SLOT; inputSlot < FIRST_INPUT_SLOT + INPUT_SLOTS_COUNT; inputSlot++)	{
		if (itemStacks[inputSlot] != null) {
			result = getSmeltingResultForItem(itemStacks[inputSlot]);
  			if (result != null) {
				// find the first suitable output slot- either empty, or with identical item that has enough space
				for (int outputSlot = FIRST_OUTPUT_SLOT; outputSlot < FIRST_OUTPUT_SLOT + OUTPUT_SLOTS_COUNT; outputSlot++) {
					ItemStack outputStack = itemStacks[outputSlot];
					if (outputStack == null) {
						firstSuitableInputSlot = inputSlot;
						firstSuitableOutputSlot = outputSlot;
						break;
					}

					if (outputStack.getItem() == result.getItem() && (!outputStack.getHasSubtypes() || outputStack.getMetadata() == outputStack.getMetadata())
									&& ItemStack.areItemStackTagsEqual(outputStack, result)) {
						int combinedSize = itemStacks[outputSlot].stackSize + result.stackSize;
						if (combinedSize <= getInventoryStackLimit() && combinedSize <= itemStacks[outputSlot].getMaxStackSize()) {
							firstSuitableInputSlot = inputSlot;
							firstSuitableOutputSlot = outputSlot;
							break;
						}
					}
				}
				if (firstSuitableInputSlot != null) break;
			}
		}
	}

	if (firstSuitableInputSlot == null) return false;
	if (!performSmelt) return true;

	// alter input and output
	itemStacks[firstSuitableInputSlot].stackSize--;
	if (itemStacks[firstSuitableInputSlot].stackSize <=0) itemStacks[firstSuitableInputSlot] = null;
	if (itemStacks[firstSuitableOutputSlot] == null) {
		itemStacks[firstSuitableOutputSlot] = result.copy(); // Use deep .copy() to avoid altering the recipe
	} else {
		itemStacks[firstSuitableOutputSlot].stackSize += result.stackSize;
	}
	markDirty();
	return true;
}

// returns the smelting result for the given stack. Returns null if the given stack can not be smelted
public static ItemStack getSmeltingResultForItem(ItemStack stack) { return FurnaceRecipes.instance().getSmeltingResult(stack); }

// returns the number of ticks the given item will burn. Returns 0 if the given item is not a valid fuel
public static short getItemBurnTime(ItemStack stack)
{
	int burntime = TileEntityFurnace.getItemBurnTime(stack);  // just use the vanilla values
	return (short)MathHelper.clamp_int(burntime, 0, Short.MAX_VALUE);
}

// Gets the number of slots in the inventory
@Override
public int getSizeInventory() {
	return itemStacks.length;
}

// Gets the stack in the given slot
@Override
public ItemStack getStackInSlot(int i) {
	return itemStacks[i];
}

/**
 * Removes some of the units from itemstack in the given slot, and returns as a separate itemstack
 * @param slotIndex the slot number to remove the items from
 * @param count the number of units to remove
 * @return a new itemstack containing the units removed from the slot
 */
@Override
public ItemStack decrStackSize(int slotIndex, int count) {
	ItemStack itemStackInSlot = getStackInSlot(slotIndex);
	if (itemStackInSlot == null) return null;

	ItemStack itemStackRemoved;
	if (itemStackInSlot.stackSize <= count) {
		itemStackRemoved = itemStackInSlot;
		setInventorySlotContents(slotIndex, null);
	} else {
		itemStackRemoved = itemStackInSlot.splitStack(count);
		if (itemStackInSlot.stackSize == 0) {
			setInventorySlotContents(slotIndex, null);
		}
	}
	markDirty();
	return itemStackRemoved;
}

// overwrites the stack in the given slotIndex with the given stack
@Override
public void setInventorySlotContents(int slotIndex, ItemStack itemstack) {
	itemStacks[slotIndex] = itemstack;
	if (itemstack != null && itemstack.stackSize > getInventoryStackLimit()) {
		itemstack.stackSize = getInventoryStackLimit();
	}
	markDirty();
}

// This is the maximum number if items allowed in each slot
// This only affects things such as hoppers trying to insert items you need to use the container to enforce this for players
// inserting items via the gui
@Override
public int getInventoryStackLimit() {
	return 64;
}

// Return true if the given player is able to use this block. In this case it checks that
// 1) the world tileentity hasn't been replaced in the meantime, and
// 2) the player isn't too far away from the centre of the block
@Override
public boolean isUseableByPlayer(EntityPlayer player) {
	if (this.worldObj.getTileEntity(this.pos) != this) return false;
	final double X_CENTRE_OFFSET = 0.5;
	final double Y_CENTRE_OFFSET = 0.5;
	final double Z_CENTRE_OFFSET = 0.5;
	final double MAXIMUM_DISTANCE_SQ = 8.0 * 8.0;
	return player.getDistanceSq(pos.getX() + X_CENTRE_OFFSET, pos.getY() + Y_CENTRE_OFFSET, pos.getZ() + Z_CENTRE_OFFSET) < MAXIMUM_DISTANCE_SQ;
}

// Return true if the given stack is allowed to be inserted in the given slot
// Unlike the vanilla furnace, we allow anything to be placed in the fuel slots
static public boolean isItemValidForFuelSlot(ItemStack itemStack)
{
	return true;
}

// Return true if the given stack is allowed to be inserted in the given slot
// Unlike the vanilla furnace, we allow anything to be placed in the fuel slots
static public boolean isItemValidForInputSlot(ItemStack itemStack)
{
	return true;
}

// Return true if the given stack is allowed to be inserted in the given slot
// Unlike the vanilla furnace, we allow anything to be placed in the fuel slots
static public boolean isItemValidForOutputSlot(ItemStack itemStack)
{
	return false;
}

//------------------------------

// This is where you save any data that you don't want to lose when the tile entity unloads
// In this case, it saves the state of the furnace (burn time etc) and the itemstacks stored in the fuel, input, and output slots
@Override
public NBTTagCompound writeToNBT(NBTTagCompound parentNBTTagCompound)
{
	super.writeToNBT(parentNBTTagCompound); // The super call is required to save and load the tiles location

//		// Save the stored item stacks

	// to use an analogy with Java, this code generates an array of hashmaps
	// The itemStack in each slot is converted to an NBTTagCompound, which is effectively a hashmap of key->value pairs such
	//   as slot=1, id=2353, count=1, etc
	// Each of these NBTTagCompound are then inserted into NBTTagList, which is similar to an array.
	NBTTagList dataForAllSlots = new NBTTagList();
	for (int i = 0; i < this.itemStacks.length; ++i) {
		if (this.itemStacks[i] != null) {
			NBTTagCompound dataForThisSlot = new NBTTagCompound();
			dataForThisSlot.setByte("Slot", (byte) i);
			this.itemStacks[i].writeToNBT(dataForThisSlot);
			dataForAllSlots.appendTag(dataForThisSlot);
		}
	}
	// the array of hashmaps is then inserted into the parent hashmap for the container
	parentNBTTagCompound.setTag("Items", dataForAllSlots);

	// Save everything else
	parentNBTTagCompound.setShort("CookTime", cookTime);
  parentNBTTagCompound.setTag("burnTimeRemaining", new NBTTagIntArray(burnTimeRemaining));
	parentNBTTagCompound.setTag("burnTimeInitial", new NBTTagIntArray(burnTimeInitialValue));
    return parentNBTTagCompound;
}

// This is where you load the data that you saved in writeToNBT
@Override
public void readFromNBT(NBTTagCompound nbtTagCompound)
{
	super.readFromNBT(nbtTagCompound); // The super call is required to save and load the tiles location
	final byte NBT_TYPE_COMPOUND = 10;       // See NBTBase.createNewByType() for a listing
	NBTTagList dataForAllSlots = nbtTagCompound.getTagList("Items", NBT_TYPE_COMPOUND);

	Arrays.fill(itemStacks, null);           // set all slots to empty
	for (int i = 0; i < dataForAllSlots.tagCount(); ++i) {
		NBTTagCompound dataForOneSlot = dataForAllSlots.getCompoundTagAt(i);
		byte slotNumber = dataForOneSlot.getByte("Slot");
		if (slotNumber >= 0 && slotNumber < this.itemStacks.length) {
			this.itemStacks[slotNumber] = ItemStack.loadItemStackFromNBT(dataForOneSlot);
		}
	}

	// Load everything else.  Trim the arrays (or pad with 0) to make sure they have the correct number of elements
	cookTime = nbtTagCompound.getShort("CookTime");
	burnTimeRemaining = Arrays.copyOf(nbtTagCompound.getIntArray("burnTimeRemaining"), FUEL_SLOTS_COUNT);
	burnTimeInitialValue = Arrays.copyOf(nbtTagCompound.getIntArray("burnTimeInitial"), FUEL_SLOTS_COUNT);
	cachedNumberOfBurningSlots = -1;
}

//	// When the world loads from disk, the server needs to send the TileEntity information to the client
//	//  it uses getUpdatePacket(), getUpdateTag(), onDataPacket(), and handleUpdateTag() to do this
  @Override
  @Nullable
  public SPacketUpdateTileEntity getUpdatePacket()
  {
    NBTTagCompound updateTagDescribingTileEntityState = getUpdateTag();
    final int METADATA = 0;
    return new SPacketUpdateTileEntity(this.pos, METADATA, updateTagDescribingTileEntityState);
  }

  @Override
  public void onDataPacket(NetworkManager net, SPacketUpdateTileEntity pkt) {
    NBTTagCompound updateTagDescribingTileEntityState = pkt.getNbtCompound();
    handleUpdateTag(updateTagDescribingTileEntityState);
  }

  /* Creates a tag containing the TileEntity information, used by vanilla to transmit from server to client
     Warning - although our getUpdatePacket() uses this method, vanilla also calls it directly, so don't remove it.
   */
  @Override
  public NBTTagCompound getUpdateTag()
  {
	NBTTagCompound nbtTagCompound = new NBTTagCompound();
	writeToNBT(nbtTagCompound);
    return nbtTagCompound;
  }

  /* Populates this TileEntity with information from the tag, used by vanilla to transmit from server to client
   Warning - although our onDataPacket() uses this method, vanilla also calls it directly, so don't remove it.
*/
  @Override
  public void handleUpdateTag(NBTTagCompound tag)
  {
    this.readFromNBT(tag);
  }
  //------------------------

// set all slots to empty
@Override
public void clear() {
	Arrays.fill(itemStacks, null);
}

// will add a key for this container to the lang file so we can name it in the GUI
@Override
public String getName() {
	return "container.Crystallizer.name";
}

@Override
public boolean hasCustomName() {
	return false;
}

  @Nullable
  @Override
  public ITextComponent getDisplayName() {
	return this.hasCustomName() ? new TextComponentString(this.getName()) : new TextComponentTranslation(this.getName());
}


private static final byte COOK_FIELD_ID = 0;
private static final byte FIRST_BURN_TIME_REMAINING_FIELD_ID = 1;
private static final byte FIRST_BURN_TIME_INITIAL_FIELD_ID = FIRST_BURN_TIME_REMAINING_FIELD_ID + (byte)FUEL_SLOTS_COUNT;
private static final byte NUMBER_OF_FIELDS = FIRST_BURN_TIME_INITIAL_FIELD_ID + (byte)FUEL_SLOTS_COUNT;

@Override
public int getField(int id) {
	if (id == COOK_FIELD_ID) return cookTime;
	if (id >= FIRST_BURN_TIME_REMAINING_FIELD_ID && id < FIRST_BURN_TIME_REMAINING_FIELD_ID + FUEL_SLOTS_COUNT) {
		return burnTimeRemaining[id - FIRST_BURN_TIME_REMAINING_FIELD_ID];
	}
	if (id >= FIRST_BURN_TIME_INITIAL_FIELD_ID && id < FIRST_BURN_TIME_INITIAL_FIELD_ID + FUEL_SLOTS_COUNT) {
		return burnTimeInitialValue[id - FIRST_BURN_TIME_INITIAL_FIELD_ID];
	}
	System.err.println("Invalid field ID in TileInventorySmelting.getField:" + id);
	return 0;
}

@Override
public void setField(int id, int value)
{
	if (id == COOK_FIELD_ID) {
		cookTime = (short)value;
	} else if (id >= FIRST_BURN_TIME_REMAINING_FIELD_ID && id < FIRST_BURN_TIME_REMAINING_FIELD_ID + FUEL_SLOTS_COUNT) {
		burnTimeRemaining[id - FIRST_BURN_TIME_REMAINING_FIELD_ID] = value;
	} else if (id >= FIRST_BURN_TIME_INITIAL_FIELD_ID && id < FIRST_BURN_TIME_INITIAL_FIELD_ID + FUEL_SLOTS_COUNT) {
		burnTimeInitialValue[id - FIRST_BURN_TIME_INITIAL_FIELD_ID] = value;
	} else {
		System.err.println("Invalid field ID in TileInventorySmelting.setField:" + id);
	}
}

@Override
public int getFieldCount() {
	return NUMBER_OF_FIELDS;
}

@Override
public boolean isItemValidForSlot(int slotIndex, ItemStack itemstack) {
	return false;
}

/**
 * This method removes the entire contents of the given slot and returns it.
 * Used by containers such as crafting tables which return any items in their slots when you close the GUI
 * @param slotIndex
 * @return
 */
@Override
public ItemStack removeStackFromSlot(int slotIndex) {
	ItemStack itemStack = getStackInSlot(slotIndex);
	if (itemStack != null) setInventorySlotContents(slotIndex, null);
	return itemStack;
}

@Override
public void openInventory(EntityPlayer player) {}

@Override
public void closeInventory(EntityPlayer player) {}

}

Not new to java >> New to modding.

Link to comment
Share on other sites

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

    • so i want to paste a big schematic in a world, but then it would delete the nearby hills and everythin. is there a way to paste it in and not destroy everything around?
    • removed both mr crayfish's furniture refurbished as well as modernfix and it still crashes on starting a world. this was the crash log I received from it: https://api.mclo.gs/1/raw/tHpAI4E    
    • IBEEditor is a client-side-only mod Remove it from the server, keep it in your client  
    • Add crash-reports with sites like https://mclo.gs/ make a test without refurbished_furniture and/or modernfix
    • [22:52:45] [main/INFO]: ModLauncher running: args [--username, bruhitsmac, --version, forge-47.3.0, --gameDir, C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1, --assetsDir, C:\Users\macke\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, c0ee535912eb4c4c88e9434567848b92, --accessToken, ????????, --clientId, 153cc6-a0eddd-77716f-542e0f-c44707, --xuid, 2535410026067915, --userType, msa, --versionType, release, --width, 1024, --height, 768, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [22:52:45] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [22:52:48] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [22:52:48] [main/INFO]: Trying GL version 4.6 [22:52:48] [main/INFO]: Requested GL version 4.6 got version 4.6 [22:52:48] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/macke/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [22:52:48] [pool-2-thread-1/INFO]: GL info: AMD Radeon(TM) Graphics GL version 4.6.0 Core Profile Context 24.5.1.240502, ATI Technologies Inc. [22:52:49] [main/INFO]: Found mod file additionaladditions-6.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file aeroblender-1.20.1-1.0.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file aether-1.20.1-1.5.0-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file aether-redux-2.0.17-1.20.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file AetherVillages-1.20.1-1.0.7-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file alexscaves-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file alexsdelight-1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file alexsmobs-1.22.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file another_furniture-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Apotheosis-1.20.1-7.4.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ApothicAttributes-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ars_nouveau-1.20.1-4.12.4-all.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file artifacts-forge-9.5.13.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ash_api-forge-3.0.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file astemirlib-1.20.1-1.25.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file athena-forge-1.20.1-3.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bagus_lib-1.20.1-5.3.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.9-all.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bbb-1.20.1-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file betterarcheology-1.2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file betterendcities-1.0.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file betterjukebox-1.20-1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BetterModsButton-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file biodiverse-1.0.0-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BiomesOPlenty-1.20.1-18.0.0.592.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file blueprint-1.20.1-7.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file blur-forge-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BotanyPots-Forge-1.20.1-13.0.39.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file BotanyTrees-Forge-1.20.1-9.0.17.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bountiful_critters-1.2.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file buildersaddition-1.20.1-20230928a.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file bygonenether-1.3.2-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file call_of_yucatan-1.0.12-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file canary-mc1.20.1-0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file caupona-1.20.1-0.4.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file chefs-delight-1.0.3-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Chipped-forge-1.20.1-3.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Chunky-1.3.146.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file citadel-2.6.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cluttered-2.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file collective-1.20.1-7.84.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file CompositeMaterial-Forge-1.20.1-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file configured-forge-1.20.1-2.2.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file connectedglass-1.1.12-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file constructionwand-1.20.1-2.11.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Corgilib-Forge-1.20.1-4.0.3.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file corpse-forge-1.20.1-1.0.14.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file crafting-on-a-stick-1.20.1-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file create-1.20.1-0.5.1.h.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file creeperoverhaul-3.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cristellib-1.1.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Critters n' Crawlers-2.2.0-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file crittersandcompanions-1.20.1-2.1.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file CullLessLeaves-Reforged-1.20.1-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file curios-forge-5.10.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Daleenys_SwampExpansion_Mod_v1.3 (1.20.1).jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DarkPaintings-Forge-1.20.1-17.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file deep_aether-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DeeperCaves-1.20.1-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file deeperdarker-forge-1.20.1-1.3.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Ding-1.20.1-Forge-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file duclib-1.20-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dungeons-and-taverns-3.0.3.f[Forge].jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dungeons-and-taverns-ancient-city-overhaul-1 [Forge].jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dungeons_plus-1.20.1-1.5.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DungeonsArise-1.20.x-2.1.58-release.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file dynamiclights-1.20.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file earth2java-forge-1.10.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file easy-villagers-forge-1.20.1-1.1.23.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file EasyMagic-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ecologics-forge-1.20.1-2.2.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file EnchantingInfuser-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file endermanoverhaul-forge-1.20.1-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file EndgamePortalRings 1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file enlightend-5.0.14-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Eternal Tales [Arhery  Jewelry] [v1.6.40] [Forge 1.20.1].jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Excessive Building 1.20.1-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file expandability-9.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ExplorersCompass-1.20.1-1.3.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Explorify v1.6.2 f10-48.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Fallingleaves-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file FarmersStructures-1.0.3-1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Fastload-Reforged-mc1.20.1-3.4.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file fish_of_thieves-mc1.20.1-v3.0.8-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file forge-medievalend-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file FramedBlocks-9.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file friendsandfoes-forge-mc1.20.1-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ftb-essentials-forge-2001.2.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ftb-library-forge-2001.2.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ftb-ultimine-forge-2001.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file furnish-26-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file fusion-1.1.1-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Galosphere-1.20.1-1.4.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Geophilic v3.1.3 f15-48.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file glowroot1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Gobber2-Forge-1.20.1-2.8.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file goblintraders-forge-1.20.1-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file GoodEnding-1.20.1-1.0.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file gottschcore-1.20.1-2.2.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file gpumemleakfix-1.20.1-1.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file guardvillagers-1.20.1-1.6.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file habitat-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hamsters-forge-1.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file handcrafted-forge-1.20.1-3.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hauntedharvest-1.20-3.1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Heads-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hearth_and_home-forge-1.20.1-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Hearths v1.0.1 f12-48.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file HopoBetterMineshaft-[1.20.2-1.20.4]-1.2.2b.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file HopoBetterRuinedPortals-[1.20-1.20.2]-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file hunters_return-1.20.1-11.5.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.21.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file iChunUtil-1.20.1-Forge-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file idas_forge-1.10.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ImmediatelyFast-Forge-1.2.21+1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file immersive_weathering-1.20.1-2.0.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Incendium_1.20.x_v5.3.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file insects_recrafted_162.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file integrated_api-1.5.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file integrated_stronghold-1.1.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file integrated_villages-1.0.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file inventorypets-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ironfurnaces-1.20.1-4.1.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file ItemsDisplayedForge-v1.3.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Jade-1.20.1-forge-11.11.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Jadens-Nether-Expansion-2.0.2-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.104.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Jellyfishing-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file L_Enders_Cataclysm-2.07 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-API-forge-1.2.15-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-bakery-forge-1.1.15.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-beachparty-forge-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-bloomingnature-forge-1.0.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-brewery-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-candlelight-forge-1.2.13.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-farm_and_charm-forge-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-furniture-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-herbalbrews-forge-1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-meadow-forge-1.3.19.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-vinery-forge-1.4.28.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file letsdo-wildernature-forge-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lionfishapi-1.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lootintegrations-1.20.1-3.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lootr-forge-1.20-0.7.34.89.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lost_aether_content-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file lukis-grand-capitals-1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Luminous Beast V1.1 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Luminous Tag V1.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Luminous V1.4.6 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file LuminousMonsters V1.2.4 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file LuminousNether V1.2 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file LuminousOverworld V1.1 - Forge 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-fences-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-paintings-1.0.5-1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-trapdoors-1.1.3-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mcw-windows-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file medieval_buildings-forge-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mes-1.3.1-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file midnightlib-forge-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file miners_delight-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mns-1.0.1-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file modernfix-forge-5.19.4+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file MonsterPlus-Forge1.20.1-v1.1.6.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file moonlight-1.20-2.13.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file moremobvariants-forge+1.20.1-1.3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file morevillagers-forge-1.20.1-5.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mowziesmobs-1.6.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mvs-4.1.4-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file mysticsbiomes-1.20.1-3.4.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Nameless Trinkets-1.20.1-1.7.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file naturalist-forge-4.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file NaturesCompass-1.20.1-1.11.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file nether-s-exoticism-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file nightlights-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file notenoughcrashes-4.4.7+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file nyfsspiders-forge-1.20.1-2.1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file oculus-mc1.20.1-1.7.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Oh-The-Biomes-Weve-Gone-Forge-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file okzoomer-forge-1.20-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Paintings-forge-1.20.1-11.0.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Paraglider-forge-20.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file phantasm-0.4.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Placebo-1.20.1-8.6.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file plushies-1.4.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file polymorph-forge-0.49.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file PuzzlesLib-v8.1.24-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Quark-4.0-460.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Raided-1.20.1-0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file randomium-1.20-1.32.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Rats-1.20.1-8.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file realmrpg_quests-0.1.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file recrafted_creatures-1.4.5-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file refurbished_furniture-forge-1.20.1-1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.6+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file repurposed_structures-7.1.15+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Ribbits-1.20.1-Forge-3.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file right-click-harvest-3.2.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file seafarer-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file silent-lib-1.20.1-8.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file simplyswords-forge-1.56.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.20.11.1115.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sophisticatedcore-1.20.1-0.6.33.711.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sophisticatedstorage-1.20.1-0.10.44.904.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file sound-physics-remastered-forge-1.20.1-1.4.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file spawn-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file spelunkers_charm-3.6.0-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file spelunkery-1.20.1-0.3.13-forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file stalwart-dungeons-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Structory_1.20.x_v1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Structory_Towers_1.20.x_v1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file structure_gel-1.20.1-2.16.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file structureessentials-1.20.1-3.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file supplementaries-1.20-2.8.17.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file swampier_swamps-1.20-4.0.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file takesapillage-1.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file The_Graveyard_3.1_(FORGE)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file The_Undergarden-1.20.1-0.8.14.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file thedawnera-1.20.1-0.58.94.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file TheOuterEnd-1.0.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file tidal-towns-1.3.3_1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Tide-forge-1.20.1-1.3.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Tips-Forge-1.20.1-12.1.8.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file transparent-forge-8.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file TravelersTitles-1.20-Forge-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file treasure-bags-1.20.1-1.9.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file treasure2-1.20.1-3.10.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Twigs-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file twilightforest-1.20.1-4.3.2508-universal.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file unearthed_journey-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file untamedwilds-1.20.1-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file unusualfishmod-1.0.7.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file unusualprehistory-1.5.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file valhelsia_core-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file valhelsia_furniture-forge-1.20.1-1.1.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file valhelsia_structures-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file variantsandventures-forge-mc1.20.1-1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file verdantvibes-1.0.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file villagernames-1.20.1-8.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file VillagersPlus_3.1_(FORGE)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file vintagedelight-0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file VisualWorkbench-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file waystones-forge-1.20-14.1.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file weather2-1.20.1-2.8.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Wesley's Roguelike Dungeons 1.20.1-2.3.2.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file what_gecko-1.20.1-1.0.3.9.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file whatareyouvotingfor2023-1.20.1-1.2.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Xaeros_Minimap_24.5.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file XaerosWorldMap_1.39.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsCaveBiomes-1.20.1-Forge-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file YungsExtras-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/INFO]: Found mod file Zeta-1.0-24.jar of type MOD with provider {mods folder locator at C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods} [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.0\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.0\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.0\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/WARN]: Mod file C:\Users\macke\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.0\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [22:52:49] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:49] [main/INFO]: Found mod file forge-1.20.1-47.3.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@14bf57b2 [22:52:50] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\geckolib-forge-1.20.1-4.4.9.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: aeroblender. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\aeroblender-1.20.1-1.0.1-neoforge.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\curios-forge-5.10.0+1.20.1.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\resourcefullib-forge-1.20.1-2.1.29.jar [22:52:50] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: expandability. Using Mod File: C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1\mods\expandability-9.0.4.jar [22:52:50] [main/INFO]: Found 19 dependencies adding them to mods collection [22:52:50] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.9.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file kuma-api-forge-20.1.8+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file caffeine-3.1.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file cumulus_menus-1.20.1-1.0.1-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file satin-forge-1.20.1+1.15.0-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file nitrogen_internals-1.20.1-1.0.11-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file flywheel-forge-1.20.1-0.6.11-13.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file Reflect-1.3.4.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:50] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@17f3eefb [22:52:57] [main/INFO]: Compatibility level set to JAVA_17 [22:52:57] [main/ERROR]: Mixin config hamsters.mixins.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config bbb.mixins.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config mixins.satin.client.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config furniture-common.mixins.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config mixins.recrafted_creatures.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config mixins.duclib.json does not specify "minVersion" property [22:52:57] [main/ERROR]: Mixin config okzoomer.mixins.json does not specify "minVersion" property [22:52:57] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [22:52:57] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.3.0, --gameDir, C:\Users\macke\curseforge\minecraft\Instances\kenzie's 1.20.1, --assetsDir, C:\Users\macke\curseforge\minecraft\Install\assets, --uuid, c0ee535912eb4c4c88e9434567848b92, --username, bruhitsmac, --assetIndex, 5, --accessToken, ????????, --clientId, 153cc6-a0eddd-77716f-542e0f-c44707, --xuid, 2535410026067915, --userType, msa, --versionType, release, --width, 1024, --height, 768] [22:52:57] [main/WARN]: Reference map 'hamsters.refmap.json' for hamsters.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:57] [main/INFO]: Loaded configuration file for ModernFix 5.19.4+mc1.20.1: 84 options available, 0 override(s) found [22:52:57] [main/INFO]: Applying Nashorn fix [22:52:57] [main/INFO]: Applied Forge config corruption patch [22:52:57] [main/WARN]: Reference map 'handcrafted-forge-1.20.1-forge-refmap.json' for handcrafted.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras_forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'graveyard-FORGE-forge-refmap.json' for graveyard-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'untamedwilds.refmap.json' for mixins.untamedwilds.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/INFO]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [22:52:58] [main/INFO]: Loading 304 mods:     - additionaladditions 6.0.1     - aeroblender 1.20.1-1.0.1-neoforge     - aether 0.0NONE         |-- cumulus_menus 0.0NONE         |-- mixinextras 0.2.0-beta.9         \-- nitrogen_internals 0.0NONE     - aether_redux 2.0.17     - aether_villages 1.0.7     - alexscaves 1.1.5     - alexsdelight 1.5     - alexsmobs 1.22.9     - another_furniture 1.20.1-3.0.1     - apotheosis 7.4.3     - aquaculture 2.5.2     - architectury 9.2.14     - ars_nouveau 4.12.4     - artifacts 9.5.13     - ash_api 3.0.2+1.20.1     - astemirlib 1.25     - athena 3.1.2     - attributeslib 1.3.7     - bagus_lib 1.20.1-5.3.0     - bakery 1.1.15     - balm 7.3.9         \-- kuma_api 20.1.8     - bbb 1.20.1-1.0.1     - beachparty 1.1.5     - betterarcheology 1.2.1-1.20.1     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendcities 1.0.0-1.20.1     - betterendisland 1.20-Forge-2.0.6     - betterfortresses 1.20-Forge-2.0.6     - betterjukebox 1.20-1.3     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - bettermodsbutton 8.0.2     - betteroceanmonuments 1.20-Forge-3.0.4     - betterwitchhuts 1.20-Forge-3.0.3     - biodiverse 1.0.0     - biomesoplenty 18.0.0.592     - biomeswevegone 1.3.1     - bloomingnature 1.0.9     - blue_skies 1.3.31     - blueprint 7.1.0     - blur 3.1.1         \-- satin 1.20.1+1.15.0-SNAPSHOT     - bookshelf 20.2.13     - botanypots 13.0.39     - botanytrees 9.0.17     - bountiful_critters 1.2.2     - brewery 1.1.9     - buildersaddition 1.20.1-20230928a     - bygonenether 1.3.2     - call_of_yucutan 1.0.12     - canary 0.3.3     - candlelight 1.2.13     - carryon 2.1.2.7     - cataclysm 2.07     - caupona 1.20.1-0.4.9     - cavesanddepths 1.2.7     - chefsdelight 1.0.3-forge-1.20.1     - chipped 3.0.6     - chunky 1.3.146     - citadel 2.6.0     - cloth_config 11.1.136     - clumps 12.0.0.4     - cnc 2.2.0     - collective 7.84     - comforts 6.4.0+1.20.1         \-- spectrelib 0.13.15+1.20.1     - composite_material 1.1.0     - configured 2.2.3     - connectedglass 1.1.12     - constructionwand 1.20.1-2.11     - controlling 12.0.2     - corgilib 4.0.3.2     - coroutil 1.20.1-1.3.7     - corpse 1.20.1-1.0.14     - crafting_on_a_stick 1.1.5     - create 0.5.1.h         \-- flywheel 0.6.11-13     - creeperoverhaul 3.0.2     - cristellib 1.1.5     - crittersandcompanions 1.20.1-2.1.7     - culllessleaves 1.20.1-1.0.5     - cupboard 1.20.1-2.7     - curios 5.10.0+1.20.1     - darkpaintings 17.0.4     - dawnera 0.58.94     - decorative_blocks 4.1.3     - deep_aether 1.20.1-1.0.4     - deeperdarker 1.3.2     - ding 1.5.0     - display 1.3.4     - doapi 1.2.15         \-- terraform 7.0.1     - domum_ornamentum 1.20.1-1.0.186-RELEASE     - duclib 1.1.4     - dungeons_arise 2.1.58-1.20.x     - dungeons_arise_seven_seas 1.0.2     - dungeons_plus 1.5.0     - dynamiclights 1.20.1.2     - earthtojavamobs 1.10.1     - easy_villagers 1.20.1-1.1.23     - easymagic 8.0.1     - ecologics 2.2.0     - enchantinginfuser 8.0.3     - endermanoverhaul 1.0.4     - endgame_portal_rings 1.0.0     - enlightened_end 5.0.14     - eternal_tales 1.6.40     - excessive_building 1.20.1-3.0.1     - expandability 9.0.4     - explorerscompass 1.20.1-1.3.3-forge     - explorify 1.6.2     - fallingleaves 2.1.0     - farm_and_charm 1.0.3     - farmers_structures 1.0.0     - farmersdelight 1.20.1-1.2.4     - fastload 3.4.0     - ferritecore 6.0.1     - fishofthieves 3.0.8     - forge 47.3.0     - framedblocks 9.3.1     - framework 0.7.8     - friendsandfoes 3.0.3     - ftbessentials 2001.2.2     - ftblibrary 2001.2.4     - ftbultimine 2001.1.5     - furnish 26     - furniture 1.0.2     - fusion 1.1.1     - galosphere 1.20.1-1.4.1     - geckolib 4.4.9     - geophilic 3.1.3     - glowroot 1.0.8     - gobber2 2.8.9     - goblintraders 1.9.3     - goodending 1.20.1-1.0.1     - gottschcore 2.2.0     - gpumemleakfix 1.20.1-1.8     - graveyard 3.1     - guardvillagers 1.20.1-1.6.7     - habitat 1.3.1     - hamsters 1.20.1-1.0.3     - handcrafted 3.0.6     - hauntedharvest 1.20-3.1.20     - heads 1.1.2     - hearth_and_home 1.20.1-2.0.1     - hearths 1.0.1     - herbalbrews 1.0.8     - highlighter 1.1.9     - hopo 1.2.2     - hoporp 1.3.7     - hunters_return 1.20.1-11.5.0     - iceandfire 2.1.13-1.20.1     - iceberg 1.1.21     - ichunutil 1.0.0     - idas 1.10.1+1.20.1     - immediatelyfast 1.2.21+1.20.4     - immersive_weathering 1.20.1-2.0.3     - incendium 5.3.5     - insects_recrafted 1.6.2     - integrated_api 1.5.1+1.20.1-forge     - integrated_stronghold 1.1.1+1.20.1-forge     - integrated_villages 1.0.1+1.20.1-forge     - inventorypets 2.1.3     - inventorysorter 23.0.1     - ironfurnaces 4.1.6     - jade 11.11.1+forge     - jei 15.20.0.104     - jellyfishing 2.0.0     - lionfishapi 1.9     - lootintegrations 1.20.1-3.7     - lootr 0.7.34.87     - lost_aether_content 1.2.3     - luminous_beasts 1.1     - luminous_monsters 1.2.4     - luminous_nether 1.2.0     - luminoustag 1.0.0     - luminousworld 1.4.6     - luphieclutteredmod 2.1     - mcwdoors 1.1.1     - mcwfences 1.1.2     - mcwpaintings 1.0.5     - mcwtrpdoors 1.1.3     - mcwwindows 2.3.0     - meadow 1.3.19         \-- mixinsquared 0.1.2-beta.5     - medieval_buildings 1.0.2     - medievalend 1.0.1     - mes 1.3.1-1.20-forge     - midnightlib 1.4.2     - minecraft 1.20.1     - miners_delight 1.20.1-1.2.3     - mns 1.0.1-1.20-forge     - modernfix 5.19.4+mc1.20.1     - monsterplus 1.0     - moonlight 1.20-2.13.3     - morecropsbydaleeny 1.1.1     - moremobvariants 1.3.0.1     - morevillagers 5.0.0     - mousetweaks 2.25.1     - mowziesmobs 1.6.4     - mr_dungeons_andtaverns 3.0.3.f     - mr_dungeons_andtavernsancientcityoverhaul 1     - mr_lukis_grandcapitals 1.0     - mr_tidal_towns 1.3.3     - mvs 4.1.4-1.20-forge     - mysticsbiomes 3.4.2     - nameless_trinkets 1.20.1-1.7.8     - naturalist 4.0.3     - naturescompass 1.20.1-1.11.2-forge     - netherexp 2.0.2     - nethers_exoticism 1.2.8     - nightlights 1.1     - notenoughcrashes 4.4.7+1.20.1     - nyfsspiders 2.1.1     - oculus 1.7.0     - ohthetreesyoullgrow 1.20.1-1.3.1     - okzoomer 3.0.1     - outer_end 1.0.8     - paintings 11.0.0.2     - paraglider 20.1.3     - patchouli 1.20.1-84-FORGE     - phantasm 0.4.1     - placebo 8.6.2     - plushies 1.4.0     - polymorph 0.49.5+1.20.1     - puzzleslib 8.1.24         \-- puzzlesaccessapi 8.0.7     - quark 4.0-460     - raided 0.1.4     - randomium 1.20-1.32     - rats 1.20.1-8.1.2     - realmrpg_quests 0.1.1     - recrafted_creatures 1.4.5-1.20.1     - refurbished_furniture 1.0.6     - regions_unexplored 0.5.6     - repurposed_structures 7.1.15+1.20.1-forge     - resourcefulconfig 2.1.2     - resourcefullib 2.1.29     - ribbits 1.20.1-Forge-3.0.0     - rightclickharvest 3.2.3+1.20.1-forge     - seafarer 1.0.1     - searchables 1.0.3     - silentlib 8.0.0     - simplyswords 1.56.0-1.20.1     - sophisticatedbackpacks 3.20.11.1115     - sophisticatedcore 0.6.33.711     - sophisticatedstorage 0.10.44.904     - sound_physics_remastered 1.20.1-1.4.5     - spawn 1.20.1-1.0.2     - spelunkers_charm 3.6.0     - spelunkery 1.20.1-0.3.13     - stalwart_dungeons 1.2.8     - structory 1.3.5     - structory_towers 1.0.7     - structure_gel 2.16.2     - structureessentials 1.20.1-3.4     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.17+a     - supplementaries 1.20-2.8.17     - swampier_swamps 1.20-4.0.0     - t_and_t 0.0NONE     - takesapillage 1.0.3     - terrablender 3.0.1.7     - terralith 2.5.4     - tide 1.3.3     - tipsmod 12.1.8     - transparent 8.0.1+1.20.1     - travelerstitles 1.20-Forge-4.0.2     - treasure2 3.10.3     - treasurebags 1.9.0     - twigs 1.20.1-3.1.1     - twilightforest 4.3.2508     - undergarden 0.8.14     - unearthed_journey 1.0.1     - untamedwilds 4.0.4     - unusualfishmod 1.0.7     - unusualprehistory 1.5.0.3     - valhelsia_core 1.1.2     - valhelsia_furniture 1.1.3     - valhelsia_structures 1.20.1-1.1.2     - variantsandventures 1.0.6     - verdantvibes 1.0.3-1.20.1     - villagernames 8.1     - villagersplus 3.1     - vinery 1.4.28     - vintagedelight 0.1.4     - visuality 2.0.2     - visualworkbench 8.0.0     - waystones 14.1.5     - weather2 1.20.1-2.8.3     - what_gecko 1.0.0     - whatareyouvotingfor 1.2.5     - wildernature 1.0.3     - wrd 2.0.0     - xaerominimap 24.5.0     - xaeroworldmap 1.39.0     - yungsapi 1.20-Forge-4.0.6     - yungscavebiomes 1.20.1-Forge-2.0.1     - yungsextras 1.20-Forge-4.0.3     - zeta 1.0-24 [22:52:58] [main/WARN]: Reference map 'mns-forge-refmap.json' for mns-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'naturalist-forge-forge-refmap.json' for naturalist.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'netherexp-forge-refmap.json' for netherexp.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'mixins.call_of_yucutan.refmap.json' for mixins.call_of_yucutan.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'betterjukebox-forge-refmap.json' for betterjukebox-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'randomium-forge-refmap.json' for randomium.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'simplyswords-forge-refmap.json' for simplyswords.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'mes-forge-refmap.json' for mes-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'wildernature.forge.mixins.refmap.json' for wildernature.forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:52:58] [main/WARN]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [22:53:00] [main/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:00] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/GreenAercloudBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.GreenAercloudBlock) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.GreenAercloudBlock was not found aether_redux.mixins.json:common.block.GreenAercloudBlockMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/OrangeTreeBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.OrangeTreeBlock) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.OrangeTreeBlock was not found aether_redux.mixins.json:common.block.OrangeTreeMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/block/natural/PurpleAercloudBlock (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.block.natural.PurpleAercloudBlock) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.block.natural.PurpleAercloudBlock was not found aether_redux.mixins.json:common.block.PurpleAercloudBlockMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/GenesisMusic (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.GenesisMusic) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.client.GenesisMusic was not found aether_redux.mixins.json:client.audio.GoTVMusicMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer was not found aether_redux.mixins.json:client.render.MimicRendererMixin [22:53:01] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [22:53:01] [main/WARN]: @Mixin target net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer was not found aether_redux.mixins.json:client.render.SwetRendererMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/protect_your_moa/client/renderer/entity/layers/MoaArmorLayer (java.lang.ClassNotFoundException: com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaArmorLayer) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaArmorLayer was not found aether_redux.mixins.json:client.render.layer.MoaArmorLayerMixin [22:53:01] [main/WARN]: Error loading class: com/aetherteam/protect_your_moa/client/renderer/entity/layers/MoaChestLayer (java.lang.ClassNotFoundException: com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaChestLayer) [22:53:01] [main/WARN]: @Mixin target com.aetherteam.protect_your_moa.client.renderer.entity.layers.MoaChestLayer was not found aether_redux.mixins.json:client.render.layer.MoaChestLayerMixin [22:53:01] [main/INFO]: Loaded config for: structureessentials.json [22:53:02] [main/WARN]: Error loading class: com/illusivesoulworks/diet/common/DietApiImpl (java.lang.ClassNotFoundException: com.illusivesoulworks.diet.common.DietApiImpl) [22:53:02] [main/WARN]: @Mixin target com.illusivesoulworks.diet.common.DietApiImpl was not found caupona.mixins.json:DietApiImplMixin [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:02] [main/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/CreativeModeTabs [22:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/pipeline/BlockOcclusionCache (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.BlockOcclusionCache) [22:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.BlockOcclusionCache was not found cull-less-leaves.mixins.json:sodiumcompat.BlockOcclusionCacheMixin [22:53:02] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/gui/SodiumGameOptionPages (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.gui.SodiumGameOptionPages) [22:53:02] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.gui.SodiumGameOptionPages was not found cull-less-leaves.mixins.json:sodiumcompat.SodiumGameOptionPagesMixin [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#isTreasureOnly() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [22:53:02] [main/INFO]: Replaced 1 calls to Enchantment#isTradeable() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [22:53:03] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [22:53:03] [main/WARN]: Error loading class: com/aetherteam/aether_genesis/client/renderer/entity/SkyrootMimicRenderer (java.lang.ClassNotFoundException: com.aetherteam.aether_genesis.client.renderer.entity.SkyrootMimicRenderer) [22:53:03] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [22:53:03] [main/WARN]: Error loading class: net/builderdog/ancient_aether/client/renderer/entity/FestiveSwetRenderer (java.lang.ClassNotFoundException: net.builderdog.ancient_aether.client.renderer.entity.FestiveSwetRenderer) [22:53:03] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [22:53:04] [main/WARN]: Invalid registry value type detected for PerfOS counters. Should be REG_DWORD. Ignoring: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfOS\Performance\Disable Performance Counters. [22:53:05] [main/INFO]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Z)V [22:53:05] [main/INFO]:   BeforeConstant found INTEGER constant: value = 0, intValue = null [22:53:05] [main/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 0 [22:53:05] [main/INFO]:       BeforeConstant found Insn [ICONST_0]  [22:53:05] [main/INFO]:   BeforeConstant found INTEGER constant: value = 60, intValue = null [22:53:05] [main/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 1 [22:53:05] [main/INFO]:       BeforeConstant found IntInsn 60 [22:53:05] [main/WARN]: @Inject(@At("INVOKE")) Shift.BY=1 on crittersandcompanions.mixins.json:LivingEntityMixin::handler$com000$onDie exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [22:53:06] [main/INFO]: Patching EffectRenderingInventoryScreen#renderEffects [22:53:06] [main/INFO]: Patching EffectRenderingInventoryScreen#renderEffects [22:53:06] [pool-4-thread-1/INFO]: ModernFix reached bootstrap stage (22.99 s after launch) [22:53:06] [pool-4-thread-1/WARN]: @Final field delegatesByName:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [22:53:06] [pool-4-thread-1/WARN]: @Final field delegatesByValue:Ljava/util/Map; in modernfix-forge.mixins.json:perf.forge_registry_alloc.ForgeRegistryMixin should be final [22:53:06] [pool-4-thread-1/INFO]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [22:53:06] [pool-4-thread-1/INFO]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [22:53:06] [pool-4-thread-1/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/CreativeModeTabs [22:53:07] [pool-4-thread-1/WARN]: This is the stupidest thing I've ever made in Minecraft modding history... [22:53:07] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in org/violetmoon/quark/content/experimental/module/GameNerfsModule [22:53:08] [pool-4-thread-1/INFO]: Vanilla bootstrap took 1877 milliseconds [22:53:08] [pool-4-thread-1/INFO]: Replaced 5 calls to Enchantment#getMaxLevel() in org/violetmoon/quark/content/tools/module/AncientTomesModule [22:53:08] [pool-4-thread-1/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:08] [pool-4-thread-1/INFO]: Patching IForgeItemStack#getEnchantmentLevel [22:53:09] [pool-4-thread-1/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [22:53:09] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in com/mrcrayfish/goblintraders/Hooks [22:53:11] [pool-4-thread-1/WARN]: @Final field f_26027_:Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; in guardvillagers.mixins.json:DefendVillageGoalGolemMixin should be final [22:53:11] [pool-4-thread-1/WARN]: Method overwrite conflict for scheduleRandomTick in corgilib-common.mixins.json:chunk.MixinChunkAccess, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [22:53:11] [pool-4-thread-1/WARN]: Method overwrite conflict for getScheduledRandomTicks in corgilib-common.mixins.json:chunk.MixinChunkAccess, previously written by dev.corgitaco.ohthetreesyoullgrow.mixin.chunk.MixinChunkAccess. Skipping method. [22:53:11] [pool-4-thread-1/WARN]: @Inject(@At("INVOKE_ASSIGN")) Shift.BY=2 on refurbished_furniture.common.mixins.json:LevelChunkMixin::handler$egc000$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [22:53:11] [pool-4-thread-1/INFO]: Patching FishingHook#catchingFish [22:53:12] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:12] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [22:53:12] [pool-4-thread-1/WARN]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [22:53:13] [Render thread/WARN]: Error loading class: net/caffeinemc/mods/sodium/api/memory/MemoryIntrinsics (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.api.memory.MemoryIntrinsics)  
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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