Jump to content

[Solved][1.12.2] Items are not saved in custom TileEntity with an inventory


xerca

Recommended Posts

Hello, I am trying to update my mod from 1.9 to 1.12.2, and although I encountered a lot of problems, I was able to solve most of them, except for this one. I read a thousand forum threads, tutorials and repositories like this but I just can't seem to fix it.

 

I have a block with a tile entity that has an inventory, similar to a chest. It only allows certain items to be stored, and changes texture depending on the number of item slots filled inside. The problem is as such:

* When I right click the block, gui opens as expected

* When I try to put an item in one of the slots, it works as expected (the itemstack is moved in the slot, and only certain item types are allowed)

* When I close the gui, I can see that the texture of the block has updated according to the amount of itemstacks put in it as expected.

* When I open it back, the item(s) put beforehand are not there anymore. But this is only most of the time. Sometimes the item(s) will remain, but if I put something else, they are gone next time.

* After I close the gui, I can see that the texture also reverted to the zero item texture.

 

I updated everything about it that I can. I learned about the IItemHandler stuff and converted all my old IInventory based code into the new system. I used the new registry function for the tile entity and put the function call in the block registry event handler. I stopped extending BlockContainer, etc, etc. I also added an excessive amount of TileEntity::markDirty() calls to make sure that wasn't the problem (it isn't). Here are the relevant files:

 

public class TileEntityFunctionalBookcase extends TileEntity {
    private final static int NUMBER_OF_SLOTS = 6;
    private final ItemStackHandler inventory;

	public TileEntityFunctionalBookcase(){
        // Create and initialize the items variable that will store store the items
        inventory = new ItemStackHandler(NUMBER_OF_SLOTS){
            protected void onContentsChanged(int slot)
            {
                markDirty();
            }
        };
    }

	public int getSizeInventory() {
		return NUMBER_OF_SLOTS;
	}

    // 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
	public boolean isUsableByPlayer(EntityPlayer player) {
		if (this.world.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;
	}

    @Override
    public boolean hasCapability(@Nonnull Capability<?> capability, @Nullable net.minecraft.util.EnumFacing facing){
        return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing);
    }

    @Override
    @Nullable
    public <T> T getCapability(@Nonnull Capability<T> capability, @Nullable net.minecraft.util.EnumFacing facing)
    {
        if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) {
            return CapabilityItemHandler.ITEM_HANDLER_CAPABILITY.cast(inventory);
        }
        return super.getCapability(capability, facing);
    }

    @Nonnull
	@Override
	public NBTTagCompound writeToNBT(NBTTagCompound parentNBTTagCompound)
	{
		super.writeToNBT(parentNBTTagCompound); // The super call is required to save and load the tileEntity's location
        NBTTagCompound inventoryTagCompound = this.inventory.serializeNBT();
        parentNBTTagCompound.setTag("inventory", inventoryTagCompound);
        System.out.println("Write to NBT");
        System.out.println(inventoryTagCompound);
		return parentNBTTagCompound;
	}

	@Override
	public void readFromNBT(NBTTagCompound parentNBTTagCompound)
	{
		super.readFromNBT(parentNBTTagCompound); // The super call is required to save and load the tiles location
        NBTTagCompound inventoryTagCompound = parentNBTTagCompound.getCompoundTag("inventory");
		this.inventory.deserializeNBT(inventoryTagCompound);
        System.out.println("Read from NBT");
        System.out.println(inventoryTagCompound);
	}

	public void closeInventory(EntityPlayer player) {
		int i = getBookAmount();
		IBlockState st = XercaBlocks.blockBookcase.getDefaultState().withProperty(BlockFunctionalBookcase.BOOK_AMOUNT, i);
		this.world.setBlockState(this.pos, st);
		this.markDirty();
	}

	@Override
	public boolean shouldRefresh(World world, BlockPos pos, @Nonnull IBlockState oldState, @Nonnull IBlockState newSate)
    {
        return oldState != newSate;
    }

	private int getBookAmount(){
		int total = 0;
		for(int i=0; i<this.inventory.getSlots(); i++){
			if(!this.inventory.getStackInSlot(i).isEmpty()){
				total++;
			}
		}
		return total;
	}

	@Override
	public void markDirty() {
		super.markDirty();
//		System.out.println("Marked dirty");
	}
}
public class BlockFunctionalBookcase extends Block {

	public static final PropertyInteger BOOK_AMOUNT = PropertyInteger.create("books", 0, 6);
	
	public BlockFunctionalBookcase()
	{
		super(Material.WOOD);
		this.setDefaultState(this.blockState.getBaseState().withProperty(BOOK_AMOUNT, 0));
		this.setRegistryName("block_bookcase");
		this.setUnlocalizedName("block_bookcase");
		this.setCreativeTab(CreativeTabs.DECORATIONS);
	}



    @Override
    public boolean hasTileEntity(final IBlockState state) {
        return true;
    }

    @Override
    public TileEntity createTileEntity(@Nonnull World world, @Nonnull IBlockState state){
        return new TileEntityFunctionalBookcase();
    }


	// Called when the block is right clicked
	// In this block it is used to open the blocks gui when right clicked by a player
	@Override
    public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
		if (worldIn.isRemote) return true;

		playerIn.openGui(XercaMod.instance, GuiFunctionalBookcase.GUI_ID, worldIn, pos.getX(), pos.getY(), pos.getZ());
		return true;
	}

	// This is where you can do something when the block is broken. In this case drop the inventory's contents
	@Override
	public void breakBlock(World worldIn, BlockPos pos, IBlockState state) {
		TileEntity tent = worldIn.getTileEntity(pos);
		if(tent.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null)){
			IItemHandler inventory = tent.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null);

			if (inventory != null){
				// For each slot in the inventory
				for (int i = 0; i < inventory.getSlots(); i++){
					// If the slot is not empty
					if (!inventory.getStackInSlot(i).isEmpty())
					{
						// Create a new entity item with the item stack in the slot
						EntityItem item = new EntityItem(worldIn, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, inventory.getStackInSlot(i));

						// Apply some random motion to the item
						float multiplier = 0.1f;
						float motionX = worldIn.rand.nextFloat() - 0.5f;
						float motionY = worldIn.rand.nextFloat() - 0.5f;
						float motionZ = worldIn.rand.nextFloat() - 0.5f;

						item.motionX = motionX * multiplier;
						item.motionY = motionY * multiplier;
						item.motionZ = motionZ * multiplier;

						// Spawn the item in the world
						worldIn.spawnEntity(item);
					}
				}
			}
		}

		// Super MUST be called last because it removes the tile entity
		super.breakBlock(worldIn, pos, state);
	}

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

	  @Override
	  public IBlockState getStateFromMeta(int meta)
	  {
		  return this.getDefaultState().withProperty(BOOK_AMOUNT, meta);
	  }
	
	  @Override
	public int getMetaFromState(IBlockState state)
	{
		return state.getValue(BOOK_AMOUNT);
	}
	
	protected BlockStateContainer createBlockState()
	{
	    return new BlockStateContainer(this, BOOK_AMOUNT);
	}
	
	@Override
	public EnumBlockRenderType getRenderType(IBlockState state)
    {
        return EnumBlockRenderType.MODEL;
    }

}
public class ContainerFunctionalBookcase extends Container {
	private final TileEntityFunctionalBookcase tileEntityInventoryBookcase;

    public ContainerFunctionalBookcase(InventoryPlayer invPlayer, TileEntityFunctionalBookcase tileEntityInventoryBookcase) {
		this.tileEntityInventoryBookcase = tileEntityInventoryBookcase;
		IItemHandler inventory = tileEntityInventoryBookcase.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null);

		final int SLOT_X_SPACING = 18;
		final int SLOT_Y_SPACING = 18;
		final int HOTBAR_XPOS = 8;
		final int HOTBAR_YPOS = 142;
		// Add the players hotbar to the gui - the [xpos, ypos] location of each item
        int HOTBAR_SLOT_COUNT = 9;
        for (int x = 0; x < HOTBAR_SLOT_COUNT; x++) {
			addSlotToContainer(new Slot(invPlayer, x, HOTBAR_XPOS + SLOT_X_SPACING * x, HOTBAR_YPOS));
		}

		final int PLAYER_INVENTORY_XPOS = 8;
		final int PLAYER_INVENTORY_YPOS = 84;
		// Add the rest of the players inventory to the gui
        int PLAYER_INVENTORY_ROW_COUNT = 3;
        for (int y = 0; y < PLAYER_INVENTORY_ROW_COUNT; y++) {
            int PLAYER_INVENTORY_COLUMN_COUNT = 9;
            for (int x = 0; x < PLAYER_INVENTORY_COLUMN_COUNT; x++) {
				int slotNumber = HOTBAR_SLOT_COUNT + y * PLAYER_INVENTORY_COLUMN_COUNT + x;
				int xpos = PLAYER_INVENTORY_XPOS + x * SLOT_X_SPACING;
				int ypos = PLAYER_INVENTORY_YPOS + y * SLOT_Y_SPACING;
				addSlotToContainer(new Slot(invPlayer, slotNumber,  xpos, ypos));
			}
		}

        int TE_INVENTORY_SLOT_COUNT = 6;
        if (TE_INVENTORY_SLOT_COUNT != tileEntityInventoryBookcase.getSizeInventory()) {
			System.err.println("Mismatched slot count in ContainerFunctionalBookcase(" + TE_INVENTORY_SLOT_COUNT
												  + ") and TileEntityFunctionalBookcase (" + tileEntityInventoryBookcase.getSizeInventory()+")");
		}
		final int TILE_INVENTORY_XPOS = 61;
		final int TILE_INVENTORY_YPOS = 17;
		final int TILE_SLOT_Y_SPACING = 32;
		final int TILE_ROW_COUNT = 2;
		final int TILE_COLUMN_COUNT = 3;
		
		// Add the tile inventory container to the gui
		for (int y = 0; y < TILE_ROW_COUNT; y++) {
			for (int x = 0; x < TILE_COLUMN_COUNT; x++) {
				int slotNumber = y * TILE_COLUMN_COUNT + x;
				int xpos = TILE_INVENTORY_XPOS + x * SLOT_X_SPACING;
				int ypos = TILE_INVENTORY_YPOS + y * TILE_SLOT_Y_SPACING;
				addSlotToContainer(new SlotBook(inventory, slotNumber,  xpos, ypos));
			}
		}
	}

	@Override
	public boolean canInteractWith(@Nonnull EntityPlayer player)
	{
		return tileEntityInventoryBookcase.isUsableByPlayer(player);
	}

	@Nonnull
	@Override
	public ItemStack transferStackInSlot(EntityPlayer player, int sourceSlotIndex)
	{
		ItemStack itemstack = ItemStack.EMPTY;
		Slot slot = inventorySlots.get(sourceSlotIndex);

		if (slot != null && slot.getHasStack()) {
			ItemStack itemstack1 = slot.getStack();
			itemstack = itemstack1.copy();

			int containerSlots = inventorySlots.size() - player.inventory.mainInventory.size();

			if (sourceSlotIndex < containerSlots) {
				if (!this.mergeItemStack(itemstack1, containerSlots, inventorySlots.size(), true)) {
					return ItemStack.EMPTY;
				}
			} else if (!this.mergeItemStack(itemstack1, 0, containerSlots, false)) {
				return ItemStack.EMPTY;
			}

			if (itemstack1.getCount() == 0) {
				slot.putStack(ItemStack.EMPTY);
			} else {
				slot.onSlotChanged();
			}

			if (itemstack1.getCount() == itemstack.getCount()) {
				return ItemStack.EMPTY;
			}

			slot.onTake(player, itemstack1);
		}

		return itemstack;
	}

	@Override
	public void onContainerClosed(EntityPlayer playerIn)
	{
		super.onContainerClosed(playerIn);
		this.tileEntityInventoryBookcase.closeInventory(playerIn);
	}

	class SlotBook extends SlotItemHandler {
		SlotBook(IItemHandler itemHandler, int index, int xPosition, int yPosition) {
			super(itemHandler, index, xPosition, yPosition);
		}

		// if this function returns false, the player won't be able to insert the given item into this slot
		@Override
		public boolean isItemValid(@Nonnull ItemStack stack) {
			Item it = stack.getItem();
			return it == Items.BOOK || it == Items.WRITABLE_BOOK || it == Items.WRITTEN_BOOK || it == Items.ENCHANTED_BOOK;
		}

		@Override
		public void onSlotChanged() {
			tileEntityInventoryBookcase.markDirty();
		}
	}
}
@SideOnly(Side.CLIENT)
public class GuiFunctionalBookcase extends GuiContainer {
	public static final int GUI_ID = 30;
	private InventoryPlayer playerInv;

	private static final ResourceLocation texture = new ResourceLocation(XercaMod.MODID, "textures/gui/bookcase.png");

	public GuiFunctionalBookcase(InventoryPlayer invPlayer, ContainerFunctionalBookcase container) {
		super(container);
		playerInv = invPlayer;
		// Set the width and height of the gui.  Should match the size of the texture!
		xSize = 176;
		ySize = 166;
	}

	@Override
	protected void drawGuiContainerBackgroundLayer(float partialTicks, int x, int y) {
		// Bind the image texture of our custom container
		Minecraft.getMinecraft().getTextureManager().bindTexture(texture);
		// Draw the image
		GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
		drawTexturedModalRect(guiLeft, guiTop, 0, 0, xSize, ySize);
	}

	@Override
	protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
		final int LABEL_XPOS = 5;
		final int LABEL_YPOS = 5;
		//fontRendererObj.drawString(tileEntityInventoryBookcase.getDisplayName().getUnformattedText(), LABEL_XPOS, LABEL_YPOS, Color.darkGray.getRGB());
	}
}
public class XercaBlocks {
	public static Block blockBookcase;

	...

	@Mod.EventBusSubscriber(modid = XercaMod.MODID)
	public static class RegistrationHandler {
		@SubscribeEvent
		public static void registerBlocks(final RegistryEvent.Register<Block> event) {
			event.getRegistry().registerAll(blockBookcase, ...(other blocks));

            GameRegistry.registerTileEntity(TileEntityFunctionalBookcase.class, new ResourceLocation(XercaMod.MODID, "tile_functional_bookcase"));
		}
        ...
	}
}

 

If anyone can help, I will really appreciate it. There is probably a stupid mistake somewhere that I just can't see, but it has been a few days already and I still can't solve this! Thanks in advance.

Edited by xerca
Included version in title
Link to comment
Share on other sites

11 minutes ago, veesus mikel heir said:

Did you remember to make and register an IGuiHandler?

Yes. It was in the old version, too (1.9).

public class XercaGuiHandler implements IGuiHandler {

	// Gets the server side element for the given gui id- this should return a container
	@Override
	public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
		if (ID == GuiFunctionalBookcase.GUI_ID){
			TileEntity tileEntity = world.getTileEntity(new BlockPos(x, y, z));
			if (tileEntity instanceof TileEntityFunctionalBookcase) {
				return new ContainerFunctionalBookcase(player.inventory, (TileEntityFunctionalBookcase) tileEntity);
			}
		}
		...
	}

	// Gets the client side element for the given gui id- this should return a gui
	@Override
	public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
		if (ID == GuiFunctionalBookcase.GUI_ID){
			TileEntity tileEntity = world.getTileEntity(new BlockPos(x, y, z));
			if (tileEntity instanceof TileEntityFunctionalBookcase) {
				return new GuiFunctionalBookcase(player.inventory, (ContainerFunctionalBookcase) getServerGuiElement(ID, player, world, x, y, z));
			}
		}
		...
	}
}
public class CommonProxy {
	...
	public void preInit()
	{
		...
		NetworkRegistry.INSTANCE.registerGuiHandler(XercaMod.instance, new XercaGuiHandler());
		...
	}
	...
}

 

Link to comment
Share on other sites

35 minutes ago, Animefan8888 said:

@xerca The best advice I can give you would be to step through with the debugger.


Do you have any idea where I should be checking? My first instinct was to put breakpoints in readFromNBT() and writeToNBT() methods, but after comparing with vanilla TileEntityChest, they seem to be called normally (write gets called when I press ESC or sometimes randomly and read gets called once in the beginning) but the data that is written is usually of an empty inventory. It is the data that comes from ItemStackHandler::serializeNBT().

 

So I don't think it has to do with NBT. But I don't know what it has to do with. So, I don't even know where to step thtough with the debugger ?. Also I don't know what should be happening in the normal case and I don't have a good reference to compare to because the vanilla chest code doesn't use Forge's capability system.

 

Could it be related to server-client communication? I read that it is supposed to be happening in the Container class somewhere, but I don't know where it should be or how it works, and none of the examples use any explicit code for communication either.

Link to comment
Share on other sites

IMO When trying to update a mod, you should usually not copy paste your old code then try & update it. You should start writing what your old code was trying (and hopefully succeeding) to do, and then copy/paste any code you KNOW works perfectly and hasn’t changed in between versions. Use your old code as a suggestion, not as a guide and not as something that should work. A lot has changed in between versions, and while your old code may appear to work, there is probably a new & better way of doing what your old code did

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

I managed to solve the problem. Apparently the TileEntity::shouldRefresh() method which returns true if the blockstate is changed, causes the TileEntity to be deleted and recreated. So, whenever I added/removed an item to/from a slot I would change the blockstate to reflect it on the texture, which would cause it to delete the whole inventory. Now I override the method to return false in any case and it works correctly (maybe I should check if the block is completely changed, not sure).

 

Thanks to anyone who tried to help.

Edited by xerca
Link to comment
Share on other sites

44 minutes ago, xerca said:

return false

You should return true when the Blocks are different.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

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
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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Playing a pack I put together myself. I'm a novice at Java. About 10-20 mins after creating a new world I always get this crash, what mod is causing it? Thank you. ---- Minecraft Crash Report ---- // Uh... Did I do that? Time: 2023-03-29 11:42:03 EDT Description: Exception ticking world java.lang.IllegalArgumentException: Cannot get property PropertyEnum{name=variant, clazz=class net.minecraft.block.BlockPlanks$EnumType, values=[oak, spruce, birch, jungle]} as it does not exist in BlockStateContainer{block=minecraft:air, properties=[]}     at net.minecraft.block.state.BlockStateContainer$StateImplementation.func_177229_b(BlockStateContainer.java:209)     at net.minecraft.block.BlockOldLeaf.func_176232_d(BlockOldLeaf.java:45)     at net.minecraft.block.BlockLeaves.getDrops(BlockLeaves.java:261)     at net.minecraft.block.Block.getDrops(Block.java:1300)     at net.minecraft.block.Block.func_180653_a(Block.java:571)     at net.minecraft.block.BlockLeaves.func_180653_a(BlockLeaves.java:209)     at net.minecraft.block.Block.func_176226_b(Block.java:564)     at net.minecraft.block.BlockLeaves.func_176235_d(BlockLeaves.java:181)     at net.minecraft.block.BlockLeaves.func_180650_b(BlockLeaves.java:173)     at net.minecraft.block.Block.func_180645_a(Block.java:508)     at net.minecraft.world.WorldServer.func_147456_g(WorldServer.java:476)     at net.minecraft.world.WorldServer.func_72835_b(WorldServer.java:225)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:756)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668)     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:279)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)     at java.lang.Thread.run(Thread.java:745) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Affected level --   Level name: New World   All players: 1 total; [EntityPlayerMP['Cercyon_Chronos'/513, l='New World', x=-344.25, y=98.23, z=-161.53]]   Chunk stats: ServerChunkCache: 669 Drop: 0   Level seed: 2973646654614874606   Level generator: ID 00 - default, ver 1. Features enabled: true   Level generator options:   Level spawn location: World: (-48,64,252), Chunk: (at 0,4,12 in -3,15; contains blocks -48,0,240 to -33,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)   Level time: 23612 game time, 23612 day time   Level dimension: 0   Level storage version: 0x04ABD - Anvil   Level weather: Rain time: 44738 (now: false), thunder time: 103425 (now: false)   Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: true -- System Details --   Minecraft Version: 1.12.2   Operating System: Windows 10 (amd64) version 10.0   Java Version: 1.8.0_51, Oracle Corporation   Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation   Memory: 411748312 bytes (392 MB) / 8998879232 bytes (8582 MB) up to 8998879232 bytes (8582 MB)   JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx9024m -Xms256m   IntCache: cache: 14, tcache: 94, allocated: 0, tallocated: 0   FML: MCP 9.42 Powered by Forge 14.23.5.2860 Optifine OptiFine_1.12.2_HD_U_G5 332 mods loaded, 330 mods active        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored                | State  | ID                                | Version                   | Source                                                    | Signature                                |        |:------ |:--------------------------------- |:------------------------- |:--------------------------------------------------------- |:---------------------------------------- |        | LCHIJA | minecraft                         | 1.12.2                    | minecraft.jar                                             | None                                     |        | LCHIJA | mcp                               | 9.42                      | minecraft.jar                                             | None                                     |        | LCHIJA | FML                               | 8.0.99.99                 | forge-1.12.2-14.23.5.2860.jar                             | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | forge                             | 14.23.5.2860              | forge-1.12.2-14.23.5.2860.jar                             | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | creativecoredummy                 | 1.0.0                     | minecraft.jar                                             | None                                     |        | LCHIJA | ivtoolkit                         | 1.3.3-1.12                | minecraft.jar                                             | None                                     |        | LCHIJA | mixinbooter                       | 7.1                       | minecraft.jar                                             | None                                     |        | LCHIJA | openmodscore                      | 0.12.2                    | minecraft.jar                                             | None                                     |        | LCHIJA | foamfixcore                       | 7.7.4                     | minecraft.jar                                             | None                                     |        | LCHIJA | obfuscate                         | 0.4.2                     | minecraft.jar                                             | None                                     |        | LCHIJA | opencomputers|core                | 1.7.7+5413028             | minecraft.jar                                             | None                                     |        | LCHIJA | srm-hooks                         | 1.12.2-1.0.0              | minecraft.jar                                             | None                                     |        | LCHIJA | bspkrscore                        | 7.6.0.1                   | [1.12]bspkrsCore-universal-7.6.0.1.jar                    | None                                     |        | LCHIJA | treecapitator                     | 1.43.0                    | [1.12]TreeCapitator-client-1.43.0.jar                     | None                                     |        | LCHIJA | forgelin                          | 1.8.4                     | Forgelin-1.8.4.jar                                        | None                                     |        | LCHIJA | alib                              | 1.0.12                    | alib-1.0.12.jar                                           | None                                     |        | LCHIJA | crafttweaker                      | 4.1.20                    | CraftTweaker2-1.12-4.1.20.687.jar                         | None                                     |        | LCHIJA | alchemistry                       | 1.12.2-42                 | alchemistry-1.12.2-42.jar                                 | None                                     |        | LCHIJA | mtlib                             | 3.0.7                     | MTLib-3.0.7.jar                                           | None                                     |        | LCHIJA | modtweaker                        | 4.0.19                    | modtweaker-4.0.20.11.jar                                  | None                                     |        | LCHIJA | jei                               | 4.16.1.301                | jei_1.12.2-4.16.1.301.jar                                 | None                                     |        | LCHIJA | abyssalcraft                      | 1.10.4                    | AbyssalCraft-1.12.2-1.10.4.jar                            | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | ctm                               | MC1.12.2-1.0.2.31         | CTM-MC1.12.2-1.0.2.31.jar                                 | None                                     |        | LCHIJA | roots                             | @VERSION@                 | Roots-1.12.2-3.1.7.jar                                    | None                                     |        | LCHIJA | mysticalworld                     | 1.12.2-1.11.0             | mysticalworld-1.12.2-1.11.0.jar                           | None                                     |        | LCHIJA | chisel                            | MC1.12.2-1.0.2.45         | Chisel-MC1.12.2-1.0.2.45.jar                              | None                                     |        | LCHIJA | baubles                           | 1.5.2                     | Baubles-1.12-1.5.2.jar                                    | None                                     |        | LCHIJA | endercore                         | 1.12.2-0.5.76             | EnderCore-1.12.2-0.5.76.jar                               | None                                     |        | LCHIJA | thaumcraft                        | 6.1.BETA26                | Thaumcraft-1.12.2-6.1.BETA26.jar                          | None                                     |        | LCHIJA | codechickenlib                    | 3.2.3.358                 | CodeChickenLib-1.12.2-3.2.3.358-universal.jar             | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | redstoneflux                      | 2.1.1                     | RedstoneFlux-1.12-2.1.1.1-universal.jar                   | None                                     |        | LCHIJA | cofhcore                          | 4.6.6                     | CoFHCore-1.12.2-4.6.6.1-universal.jar                     | None                                     |        | LCHIJA | brandonscore                      | 2.4.20                    | BrandonsCore-1.12.2-2.4.20.162-universal.jar              | None                                     |        | LCHIJA | cofhworld                         | 1.4.0                     | CoFHWorld-1.12.2-1.4.0.1-universal.jar                    | None                                     |        | LCHIJA | thermalfoundation                 | 2.6.7                     | ThermalFoundation-1.12.2-2.6.7.1-universal.jar            | None                                     |        | LCHIJA | draconicevolution                 | 2.3.28                    | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar        | None                                     |        | LCHIJA | thermalexpansion                  | 5.5.7                     | ThermalExpansion-1.12.2-5.5.7.1-universal.jar             | None                                     |        | LCHIJA | tombstone                         | 4.6.2                     | tombstone-4.6.2-1.12.2.jar                                | None                                     |        | LCHIJA | enderio                           | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiointegrationtic             | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | mantle                            | 1.12-1.3.3.55             | Mantle-1.12-1.3.3.55.jar                                  | None                                     |        | LCHIJA | twilightforest                    | 3.11.1021                 | twilightforest-1.12.2-3.11.1021-universal.jar             | None                                     |        | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183         | TConstruct-1.12.2-2.13.0.183.jar                          | None                                     |        | LCHIJA | acintegration                     | 1.11.3                    | AbyssalCraft Integration-1.12.2-1.11.3.jar                | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | ic2                               | 2.8.222-ex112             | industrialcraft-2-2.8.222-ex112.jar                       | de041f9f6187debbc77034a344134053277aa3b0 |        | LCHIJA | engineersdecor                    | 1.1.5                     | engineersdecor-1.12.2-1.1.5.jar                           | ed58ed655893ced6280650866985abcae2bf7559 |        | LCHIJA | engineerstools                    | 1.0.5                     | engineerstools-1.12.2-1.0.5.jar                           | None                                     |        | LCHIJA | immersiveengineering              | 0.12-98                   | ImmersiveEngineering-0.12-98.jar                          | None                                     |        | LCHIJA | libvulpes                         | 0.4.2.-25                 | LibVulpes-1.12.2-0.4.2-25-universal.jar                   | None                                     |        | LCHIJA | advancedrocketry                  | 1.12.2-2.0.0-13           | AdvancedRocketry-1.12.2-2.0.0-13.jar                      | None                                     |        | LCHIJA | appliedenergistics2               | rv6-stable-7              | appliedenergistics2-rv6-stable-7.jar                      | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |        | LCHIJA | bdlib                             | 1.14.3.12                 | bdlib-1.14.3.12-mc1.12.2.jar                              | None                                     |        | LCHIJA | ae2stuff                          | 0.7.0.4                   | ae2stuff-0.7.0.4-mc1.12.2.jar                             | None                                     |        | LCHIJA | orbis-lib                         | 0.2.0                     | orbis-lib-1.12.2-0.2.0+build411.jar                       | db341c083b1b8ce9160a769b569ef6737b3f4cdf |        | LCHIJA | aether                            | 0.3.0                     | aether_ii-1.12.2-0.3.0+build411-universal.jar             | db341c083b1b8ce9160a769b569ef6737b3f4cdf |        | LCHIJA | aiimprovements                    | 0.0.1.3                   | AIImprovements-1.12-0.0.1b3.jar                           | None                                     |        | LCHIJA | akashictome                       | 1.2-12                    | AkashicTome-1.2-12.jar                                    | None                                     |        | LCHIJA | creativecore                      | 1.10.0                    | CreativeCore_v1.10.70_mc1.12.2.jar                        | None                                     |        | LCHIJA | ambientsounds                     | 3.0                       | AmbientSounds_v3.1.7_mc1.12.2.jar                         | None                                     |        | LCHIJA | guideapi                          | 1.12-2.1.8-63             | Guide-API-1.12-2.1.8-63.jar                               | None                                     |        | LCHIJA | bloodmagic                        | 1.12.2-2.4.3-105          | BloodMagic-1.12.2-2.4.3-105.jar                           | None                                     |        | LCHIJA | animus                            | 1                         | Animus-1.12-2.1.7.jar                                     | None                                     |        | LCHIJA | applecore                         | 3.4.0                     | AppleCore-mc1.12.2-3.4.0.jar                              | None                                     |        | LCHIJA | appleskin                         | 1.0.14                    | AppleSkin-mc1.12-1.0.14.jar                               | None                                     |        | LCHIJA | base                              | 3.14.0                    | base-1.12.2-3.14.0.jar                                    | None                                     |        | LCHIJA | contenttweaker                    | 1.12.2-4.10.0             | ContentTweaker-1.12.2-4.10.0.jar                          | None                                     |        | LCHIJA | conarm                            | 1.2.5.10                  | conarm-1.12.2-1.2.5.10.jar                                | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |        | LCHIJA | armoryexpansion                   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | armoryexpansion-custommaterials   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | armoryexpansion-iceandfire        | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | matteroverdrive                   | 0.7.0.0                   | MatterOverdrive-1.12.2-0.7.1.0-universal.jar              | None                                     |        | LCHIJA | armoryexpansion-matteroverdrive   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | astralsorcery                     | 1.10.27                   | astralsorcery-1.12.2-1.10.27.jar                          | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |        | LCHIJA | attributefix                      | 1.0.12                    | AttributeFix-Forge-1.12.2-1.0.12.jar                      | None                                     |        | LCHIJA | autoreglib                        | 1.3-32                    | AutoRegLib-1.3-32.jar                                     | None                                     |        | LCHIJA | avaritia                          | 3.3.0                     | Avaritia-1.12.2-3.3.0.37-universal.jar                    | None                                     |        | LCHIJA | ichunutil                         | 7.2.2                     | iChunUtil-1.12.2-7.2.2.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | backtools                         | 7.0.1                     | BackTools-1.12.2-7.0.1.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | betterbiomeblend                  | 1.12.2-1.1.7-forge        | betterbiomeblend-1.12.2-1.1.7-forge.jar                   | None                                     |        | LCHIJA | bettercaves                       | 1.12.2                    | bettercaves-1.12.2-2.0.4.jar                              | None                                     |        | LCHIJA | bettermineshafts                  | 1.12.2-2.2.1              | BetterMineshaftsForge-1.12.2-2.2.1.jar                    | None                                     |        | LCHIJA | botania                           | r1.10-364                 | Botania r1.10-364.4.jar                                   | None                                     |        | LCHIJA | llibrary                          | 1.7.20                    | llibrary-1.7.20-1.12.2.jar                                | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |        | LCHIJA | mowziesmobs                       | 1.5.8                     | mowziesmobs-1.5.8.jar                                     | None                                     |        | LCHIJA | patchouli                         | 1.0-23.6                  | Patchouli-1.0-23.6.jar                                    | None                                     |        | LCHIJA | bewitchment                       | 0.22.63                   | bewitchment-1.12.2-0.0.22.64.jar                          | None                                     |        | LCHIJA | bibliocraft                       | 2.4.6                     | BiblioCraft[v2.4.6][MC1.12.2].jar                         | None                                     |        | LCHIJA | biomesoplenty                     | 7.0.1.2445                | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar             | None                                     |        | LCHIJA | bloodarsenal                      | 1.12.2-2.2.2-31           | BloodArsenal-1.12.2-2.2.2-31.jar                          | None                                     |        | LCHIJA | bookshelf                         | 2.3.590                   | Bookshelf-1.12.2-2.3.590.jar                              | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | buildcraftlib                     | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftcore                    | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftbuilders                | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcrafttransport               | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftsilicon                 | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftenergy                  | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | natura                            | 1.12.2-4.3.2.69           | natura-1.12.2-4.3.2.69.jar                                | None                                     |        | LCHIJA | forestry                          | 5.8.2.387                 | forestry_1.12.2-5.8.2.387.jar                             | None                                     |        | LCHIJA | buildcraftcompat                  | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftfactory                 | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftrobotics                | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | chameleon                         | 1.12-4.1.3                | Chameleon-1.12-4.1.3.jar                                  | None                                     |        | LCHIJA | chickenchunks                     | 2.4.2.74                  | ChickenChunks-1.12.2-2.4.2.74-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | chunkgenlimit                     | 1.1                       | chunkgenlimiter-1.1.jar                                   | None                                     |        | LCHIJA | clumps                            | 3.1.2                     | Clumps-3.1.2.jar                                          | None                                     |        | LCHIJA | controlling                       | 3.0.10                    | Controlling-3.0.12.2.jar                                  | None                                     |        | LCHIJA | cookingforblockheads              | 6.5.0                     | CookingForBlockheads_1.12.2-6.5.0.jar                     | None                                     |        | LCHIJA | craftingtweaks                    | 8.1.9                     | CraftingTweaks_1.12.2-8.1.9.jar                           | None                                     |        | LCHIJA | ctgui                             | 1.0.0                     | CraftTweaker2-1.12-4.1.20.687.jar                         | None                                     |        | LCHIJA | crafttweakerjei                   | 2.0.3                     | CraftTweaker2-1.12-4.1.20.687.jar                         | None                                     |        | LCHIJA | crimsonrevelations                | 0.8                       | crimsonrevelations-0.8.jar                                | None                                     |        | LCHIJA | crimsonwarfare                    | 1.5                       | crimsonwarfare-1.5.jar                                    | None                                     |        | LCHIJA | cucumber                          | 1.1.3                     | Cucumber-1.12.2-1.1.3.jar                                 | None                                     |        | LCHIJA | customloadingscreen               | 1.12.2-1.5.7              | CustomLoadingScreen-1.12.2-1.5.7.jar                      | None                                     |        | LCHIJA | cyclopscore                       | 1.6.7                     | CyclopsCore-1.12.2-1.6.7.jar                              | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |        | LCHIJA | eleccore                          | 1.9.453                   | ElecCore-1.12.2-1.9.453.jar                               | None                                     |        | LCHIJA | mcjtylib_ng                       | 3.5.4                     | mcjtylib-1.12-3.5.4.jar                                   | None                                     |        | LCHIJA | opencomputers                     | 1.7.7+5413028             | OpenComputers-MC1.12.2-1.7.7+5413028.jar                  | None                                     |        | LCHIJA | rftools                           | 7.73                      | rftools-1.12-7.73.jar                                     | None                                     |        | LCHIJA | deepresonance                     | 1.8.0                     | deepresonance-1.12-1.8.0.jar                              | None                                     |        | LCHIJA | dimdoors                          | 3.0.10                    | DimensionalDoors-1.12.2-3.0.12.jar                        | None                                     |        | LCHIJA | ding                              | 1.0.2                     | Ding-1.12.2-1.0.2.jar                                     | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | draconicadditions                 | 1.17.0                    | Draconic-Additions-1.12.2-1.17.0.45-universal.jar         | None                                     |        | LCHIJA | ebwizardry                        | 4.3.9                     | ElectroblobsWizardry-4.3.9.jar                            | None                                     |        | LCHIJA | enchdesc                          | 1.1.15                    | EnchantmentDescriptions-1.12.2-1.1.15.jar                 | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | endercrop                         | 1.12.2-1.6.0              | endercrop-1.12.2-1.6.0.jar                                | None                                     |        | LCHIJA | enderiobase                       | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduits                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduitsappliedenergistics | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduitsopencomputers      | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduitsrefinedstorage     | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiointegrationforestry        | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiointegrationticlate         | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioinvpanel                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | ftblib                            | 5.4.7.2                   | FTBLib-5.4.7.2.jar                                        | None                                     |        | LCHIJA | enderiomachines                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiopowertools                 | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | mcmultipart                       | 2.5.3                     | MCMultiPart-2.5.3.jar                                     | None                                     |        | LCHIJA | mekanism                          | 1.12.2-9.8.3.390          | Mekanism-1.12.2-9.8.3.390.jar                             | None                                     |        | LCHIJA | gasconduits                       | 5.3.70                    | EnderIO-conduits-mekanism-1.12.2-5.3.70.jar               | None                                     |        | LCHIJA | enderioendergy                    | 5.3.70                    | EnderIO-endergy-1.12.2-5.3.70.jar                         | None                                     |        | LCHIJA | enderstorage                      | 2.4.6.137                 | EnderStorage-1.12.2-2.4.6.137-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | energyconverters                  | 1.3.7.30                  | energyconverters_1.12.2-1.3.7.30.jar                      | None                                     |        | LCHIJA | engineersdoors                    | 0.9.1                     | engineers_doors-1.12.2-0.9.1.jar                          | None                                     |        | LCHIJA | renderlib                         | 1.2.7                     | RenderLib-1.12.2-1.2.7.jar                                | None                                     |        | LCHIJA | entityculling                     | 6.3.1                     | EntityCulling-1.12.2-6.3.1.jar                            | None                                     |        | LCHIJA | hammercore                        | 2.0.6.32                  | HammerLib-1.12.2-2.0.6.32.jar                             | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |        | LCHIJA | projecte                          | 1.12.2-PE1.4.1            | ProjectE-1.12.2-PE1.4.1.jar                               | None                                     |        | LCHIJA | expequiv                          | 12.3.17                   | ExpandedEquivalence-1.12.2-12.3.17.jar                    | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |        | LCHIJA | extra_spells                      | 1.2.0                     | ExtraSpells-1.12.2-1.2.0.jar                              | None                                     |        | LCHIJA | zerocore                          | 1.12.2-0.1.2.9            | zerocore-1.12.2-0.1.2.9.jar                               | None                                     |        | LCHIJA | bigreactors                       | 1.12.2-0.4.5.68           | ExtremeReactors-1.12.2-0.4.5.68.jar                       | None                                     |        | LCHIJA | fastbench                         | 1.7.4                     | FastWorkbench-1.12.2-1.7.4.jar                            | None                                     |        | LCHIJA | floodlights                       | 1.4.4-22                  | FloodLights-1.12.2-1.4.4-22.jar                           | None                                     |        | LCHIJA | sonarcore                         | 5.0.19                    | sonarcore-1.12.2-5.0.19-20.jar                            | None                                     |        | LCHIJA | fluxnetworks                      | 4.1.0                     | FluxNetworks-1.12.2-4.1.1.34.jar                          | None                                     |        | LCHIJA | foamfix                           | @VERSION@                 | foamfix-0.10.15-1.12.2.jar                                | None                                     |        | LCHIJA | forbidden_arcanus                 | 1.12.2-1.1.4              | forbidden_arcanus-1.12.2-1.1.4.jar                        | None                                     |        | LCHIJA | forgeendertech                    | 1.12.2-4.5.6.1            | ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar              | None                                     |        | LCHIJA | forgemultipartcbe                 | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | microblockcbe                     | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |        | LCHIJA | minecraftmultipartcbe             | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |        | LCHIJA | ftbutilities                      | 5.4.1.131                 | FTBUtilities-5.4.1.131.jar                                | None                                     |        | LCHIJA | cfm                               | 6.3.0                     | furniture-6.3.2-1.12.2.jar                                | None                                     |        | LCHIJA | futuremc                          | 0.2.6                     | future-mc-0.2.11.jar                                      | None                                     |        | LCHIJA | geneticsreborn                    | 1.28                      | geneticsreborn-1.12-1.32.jar                              | None                                     |        | LCHIJA | getittogetherdrops                | 1.0.2                     | getittogetherdrops-1.12.2-v1.0.2.jar                      | None                                     |        | LCHIJA | gunpowderlib                      | 1.12.2-1.1                | GunpowderLib-1.12.2-1.1.jar                               | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | harvest                           | 1.12-1.2.8-25             | Harvest-1.12-1.2.8-25.jar                                 | None                                     |        | LCHIJA | hats                              | 7.1.1                     | Hats-1.12.2-7.1.1.jar                                     | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | waila                             | 1.8.26                    | Hwyla-1.8.26-B41_1.12.2.jar                               | None                                     |        | LCHIJA | illagers_plus                     | 1.1                       | IllagersPlus-1.12.2-1.1.3.jar                             | None                                     |        | LCHIJA | immersivecables                   | 1.3.2                     | ImmersiveCables-1.12.2-1.3.2.jar                          | None                                     |        | LCHIJA | immersivepetroleum                | 1.1.10                    | immersivepetroleum-1.12.2-1.1.10.jar                      | None                                     |        | LCHIJA | immersiveposts                    | 0.2.1                     | ImmersivePosts-0.2.1.jar                                  | 0ba8738eadcf158e7fe1452255a73a022fb15feb |        | LCHIJA | teslacorelib                      | 1.0.18                    | tesla-core-lib-1.12.2-1.0.18.jar                          | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | industrialforegoing               | 1.12.2-1.12.2             | industrialforegoing-1.12.2-1.12.13-237.jar                | None                                     |        | LCHIJA | industrialmeat                    | 1.12-1.0.2                | industrialmeat-1.12-1.0.2.jar                             | None                                     |        | LCHIJA | industrialrenewal                 | 0.21.8                    | IndustrialRenewal_1.12.2-0.21.8.jar                       | None                                     |        | LCHIJA | initialinventory                  | 2.0.2                     | InitialInventory-3.0.0.jar                                | None                                     |        | LCHIJA | mysticalagriculture               | 1.7.5                     | MysticalAgriculture-1.12.2-1.7.5.jar                      | None                                     |        | LCHIJA | mysticalagradditions              | 1.3.2                     | MysticalAgradditions-1.12.2-1.3.2.jar                     | None                                     |        | LCHIJA | harvestcraft                      | 1.12.2zb                  | Pam's HarvestCraft 1.12.2zg.jar                           | None                                     |        | LCHIJA | integrationforegoing              | 1.12.2-1.11               | IntegrationForegoing-1.12.2-1.11.jar                      | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | inventorytweaks                   | 1.63+release.109.220f184  | InventoryTweaks-1.63.jar                                  | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |        | LCHIJA | ironchest                         | 1.12.2-7.0.67.844         | ironchest-1.12.2-7.0.72.847.jar                           | None                                     |        | LCHIJA | jaopca                            | 1.12.2-2.2.8.106          | JAOPCA-1.12.2-2.2.8.106.jar                               | None                                     |        | LCHIJA | oredictinit                       | 1.12.2-2.2.1.72           | JAOPCA-1.12.2-2.2.8.106.jar                               | None                                     |        | LCHIJA | jeiintegration                    | 1.6.0                     | jeiintegration_1.12.2-1.6.0.jar                           | None                                     |        | LCHIJA | journeymap                        | 1.12.2-5.7.1              | journeymap-1.12.2-5.7.1.jar                               | None                                     |        | LCHIJA | jrftl                             | 1.1                       | JRFTL[1.12.2]-1.1.jar                                     | None                                     |        | LCHIJA | justenoughdimensions              | 1.6.0-dev.20200416.184714 | justenoughdimensions-1.12.2-1.6.0-dev.20200416.184714.jar | 2b03e1423915a189b8094816baa18f239d576dff |        | LCHIJA | jeid                              | 1.0.4-SNAPSHOT            | JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar                     | None                                     |        | LCHIJA | justenoughreactors                | 1.1.3.61                  | JustEnoughReactors-1.12.2-1.1.3.61.jar                    | 2238d4a92d81ab407741a2fdb741cebddfeacba6 |        | LCHIJA | loottweaker                       | 0.3.1                     | LootTweaker-0.3.1+MC1.12.2.jar                            | None                                     |        | LCHIJA | jeresources                       | 0.9.2.60                  | JustEnoughResources-1.12.2-0.9.2.60.jar                   | None                                     |        | LCHIJA | konkrete                          | 1.6.0                     | konkrete_forge_1.6.0_MC_1.12-1.12.2.jar                   | None                                     |        | LCHIJA | letsencryptcraft                  | @VERSION@                 | letsencryptcraft-1.10.2-1.2.0.jar                         | None                                     |        | LCHIJA | librarianlib                      | 4.22                      | librarianlib-1.12.2-4.22.jar                              | None                                     |        | LCHIJA | libraryex                         | 1.2.2                     | LibraryEx-1.12.2-1.2.2.jar                                | None                                     |        | LCHIJA | lostmagic                         | 1.0                       | lostmagic-1.0.3.jar                                       | None                                     |        | LCHIJA | lunatriuscore                     | 1.2.0.42                  | LunatriusCore-1.12.2-1.2.0.42-universal.jar               | None                                     |        | LCHIJA | mahoutsukai                       | 1.12.2-v1.19.55           | mahoutsukai-1.12.2-v1.19.55.jar                           | None                                     |        | LCHIJA | matc                              | 1.0.1-hotfix              | matc-1.0.1-hotfix.jar                                     | None                                     |        | LCHIJA | immersivetech                     | 1.9.100                   | MCTImmersiveTechnology-1.12.2-1.9.100.jar                 | None                                     |        | LCHIJA | mcwbridges                        | 1.0.6                     | mcw-bridges-1.0.6b-mc1.12.2.jar                           | None                                     |        | LCHIJA | mcwdoors                          | 1.3                       | mcw-doors-1.0.3-mc1.12.2.jar                              | None                                     |        | LCHIJA | mcwfences                         | 1.0.0                     | mcw-fences-1.0.0-mc1.12.2.jar                             | None                                     |        | LCHIJA | mcwfurnitures                     | 1.0.1                     | mcw-furniture-1.0.1-mc1.12.2beta.jar                      | None                                     |        | LCHIJA | mcwroofs                          | 1.0.2                     | mcw-roofs-1.0.2-mc1.12.2.jar                              | None                                     |        | LCHIJA | mcwtrpdoors                       | 1.0.2                     | mcw-trapdoors-1.0.3-mc1.12.2.jar                          | None                                     |        | LCHIJA | mcwwindows                        | 1.0                       | mcw-windows-1.0.0-mc1.12.2.jar                            | None                                     |        | LCHIJA | mekanismgenerators                | 1.12.2-9.8.3.390          | MekanismGenerators-1.12.2-9.8.3.390.jar                   | None                                     |        | LCHIJA | mekanismtools                     | 1.12.2-9.8.3.390          | MekanismTools-1.12.2-9.8.3.390.jar                        | None                                     |        | LCHIJA | mekores                           | 2.0.13                    | mekores-2.0.13.jar                                        | None                                     |        | LCHIJA | modularforcefieldsystem           | 3.0.1                     | MFFS-1.12.2-4.0.1.0_1.12_cc3a5aa.jar                      | None                                     |        | LCHIJA | numina                            | 1.12.2-1.0.38             | Numina-1.12.2-1.0.38.jar                                  | None                                     |        | LCHIJA | powersuits                        | 1.12.2-1.0.46             | ModularPowersuits-1.12.2-1.0.46.jar                       | None                                     |        | LCHIJA | moreoverlays                      | 1.15.1                    | moreoverlays-1.15.1-mc1.12.2.jar                          | None                                     |        | LCHIJA | morpheus                          | 1.12.2-3.5.106            | Morpheus-1.12.2-3.5.106.jar                               | None                                     |        | LCHIJA | mousetweaks                       | 2.10                      | MouseTweaks-2.10-mc1.12.2.jar                             | None                                     |        | LCHIJA | supermartijn642configlib          | 1.1.6                     | supermartijn642configlib-1.1.6-forge-mc1.12.jar           | None                                     |        | LCHIJA | supermartijn642corelib            | 1.1.6                     | supermartijn642corelib-1.1.6-forge-mc1.12.jar             | None                                     |        | LCHIJA | movingelevators                   | 1.3.12                    | movingelevators-1.3.12-forge-mc1.12.jar                   | None                                     |        | LCHIJA | mrtjpcore                         | 2.1.4.43                  | MrTJPCore-1.12.2-2.1.4.43-universal.jar                   | None                                     |        | LCHIJA | multithreadednoise                | 0.0.2                     | MultithreadedNoise-1.12.2-0.0.2.jar                       | None                                     |        | LCHIJA | mysticaladaptations               | 1.8.8                     | MysticalAdaptations-1.12.2-1.8.8.jar                      | None                                     |        | LCHIJA | naturescompass                    | 1.8.5                     | NaturesCompass-1.12.2-1.8.5.jar                           | None                                     |        | LCHIJA | netherex                          | 2.2.5                     | NetherEx-1.12.2-2.2.5.jar                                 | None                                     |        | LCHIJA | netherportalfix                   | 5.3.17                    | NetherPortalFix_1.12.1-5.3.17.jar                         | None                                     |        | LCHIJA | norecipebook                      | 1.2.1                     | noRecipeBook_v1.2.2formc1.12.2.jar                        | None                                     |        | LCHIJA | nothirium                         | 0.2.4-beta                | Nothirium-1.12.2-0.2.4-beta.jar                           | None                                     |        | LCHIJA | hbm                               | NTM-Extended-1.12.2-1.9.2 | NTM-Extended-1.12.2-1.9.2.jar                             | None                                     |        | LCHIJA | omlib                             | 3.1.5-256                 | omlib-1.12.2-3.1.5-256.jar                                | None                                     |        | LCHIJA | openmods                          | 0.12.2                    | OpenModsLib-1.12.2-0.12.2.jar                             | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openblocks                        | 1.8.1                     | OpenBlocks-1.12.2-1.8.1.jar                               | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openmodularturrets                | 3.1.14-382                | openmodularturrets-1.12.2-3.1.14-382.jar                  | None                                     |        | LCHIJA | opensecurity                      | 1.0-93                    | OpenSecurity-1.12.2-1.0-93.jar                            | None                                     |        | LCHIJA | brewcraft                         | 1.12.2-1.0.2              | Pam's BrewCraft 1.12.2-1.0.2.jar                          | None                                     |        | LCHIJA | particleculling                   | v1.4.1                    | particleculling-1.12.2-v1.4.1.jar                         | None                                     |        | LCHIJA | performant                        | 1.12.2-1.5                | performant-1.11.jar                                       | None                                     |        | LCHIJA | physica                           | 1.12.2-0.0.2-0            | PhysicaCore-1.12.2-0.0.2-0 ALPHA.jar                      | None                                     |        | LCHIJA | placebo                           | 1.6.0                     | Placebo-1.12.2-1.6.0.jar                                  | None                                     |        | LCHIJA | shetiphiancore                    | 3.5.9                     | shetiphiancore-1.12.0-3.5.9.jar                           | None                                     |        | LCHIJA | platforms                         | 1.4.6                     | platforms-1.12.0-1.4.6.jar                                | None                                     |        | LCHIJA | pneumaticcraft                    | 1.12.2-0.11.15-398        | pneumaticcraft-repressurized-1.12.2-0.11.15-398.jar       | None                                     |        | LCHIJA | portalgun                         | 7.1.0                     | PortalGun-1.12.2-7.1.0.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | portality                         | 1.0-SNAPSHOT              | portality-1.12.2-1.2.3-15.jar                             | None                                     |        | LCHIJA | practicallogistics2               | 3.0.8                     | practicallogistics2-1.12.2-3.0.8-11.jar                   | None                                     |        | LCHIJA | projectintelligence               | 1.0.9                     | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar         | None                                     |        | LCHIJA | projectred-core                   | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-Base.jar                      | None                                     |        | LCHIJA | projectred-compat                 | 1.0                       | ProjectRed-1.12.2-4.9.4.120-compat.jar                    | None                                     |        | LCHIJA | projectred-integration            | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-integration.jar               | None                                     |        | LCHIJA | projectred-transmission           | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-integration.jar               | None                                     |        | LCHIJA | projectred-fabrication            | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-fabrication.jar               | None                                     |        | LCHIJA | projectred-illumination           | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-lighting.jar                  | None                                     |        | LCHIJA | psi                               | r1.1-78                   | Psi-r1.1-78.2.jar                                         | None                                     |        | LCHIJA | psipherals                        | 1.1.0                     | psipherals-1.1.0.jar                                      | None                                     |        | LCHIJA | ptrmodellib                       | 1.0.5                     | PTRLib-1.0.5.jar                                          | None                                     |        | LCHIJA | quickleafdecay                    | 1.2.4                     | QuickLeafDecay-MC1.12.1-1.2.4.jar                         | None                                     |        | LCHIJA | reccomplex                        | 1.4.8.4                   | RecurrentComplex-1.4.8.4.jar                              | None                                     |        | LCHIJA | redstonearsenal                   | 2.6.6                     | RedstoneArsenal-1.12.2-2.6.6.1-universal.jar              | None                                     |        | LCHIJA | redstonerepository                | 1.12.2-2.0.0              | RedstoneRepository-1.12.2-2.0.0.jar                       | None                                     |        | LCHIJA | xreliquary                        | 1.12.2-1.3.4.796          | Reliquary-1.12.2-1.3.4.796.jar                            | None                                     |        | LCHIJA | rftoolsdim                        | 5.71                      | rftoolsdim-1.12-5.71.jar                                  | None                                     |        | LCHIJA | rsgauges                          | 1.2.8                     | rsgauges-1.12.2-1.2.8.jar                                 | ed58ed655893ced6280650866985abcae2bf7559 |        | LCHIJA | savemystronghold                  | 1.12.2-1.0.0              | savemystronghold-1.12.2-1.0.0.jar                         | None                                     |        | LCHIJA | secretroomsmod                    | 5.6.4                     | secretroomsmod-1.12.2-5.6.4.jar                           | None                                     |        | LCHIJA | servertabinfo                     | 1.2.6                     | ServerTabInfo-1.12.2-1.2.6.jar                            | None                                     |        | LCHIJA | sgcraft                           | 2.0.3                     | SGCraft-2.0.5.jar                                         | None                                     |        | LCHIJA | simplylight                       | 1.12.2-0.8.7              | simplylight-1.12.2-0.8.7.jar                              | None                                     |        | LCHIJA | srparasites                       | 1.9.11                    | SRParasites-1.12.2v1.9.11.jar                             | None                                     |        | LCHIJA | stackie                           | 1.6.0.48                  | Stackie-1.12.2-1.6.0.48-universal.jar                     | None                                     |        | LCHIJA | storagedrawers                    | 5.2.2                     | StorageDrawers-1.12.2-5.4.2.jar                           | None                                     |        | LCHIJA | sync                              | 7.1.0                     | Sync-1.12.2-7.1.0.jar                                     | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | tesseract                         | 1.0.29                    | tesseract-1.0.29-forge-mc1.12.jar                         | None                                     |        | LCHIJA | tfspellpack                       | 1.1.0                     | TFSpellPack-1.1.0-MC1.12.2.jar                            | None                                     |        | LCHIJA | tg                                | 0.1.6.0                   | Thaumic_Gadgets_1.12.2_0.1.6_tb.26.jar                    | None                                     |        | LCHIJA | thaumadditions                    | 12.7.8                    | ThaumicAdditions-1.12.2-12.7.8.jar                        | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |        | LCHIJA | thaumicaugmentation               | 1.12.2-2.1.10             | ThaumicAugmentation-1.12.2-2.1.10.jar                     | None                                     |        | LCHIJA | thaumicjei                        | 1.6.0                     | ThaumicJEI-1.12.2-1.6.0-27.jar                            | None                                     |        | LCHIJA | thaumicenergistics                | 2.2.3                     | thaumicenergistics-2.2.4.jar                              | None                                     |        | LCHIJA | tcinventoryscan                   | 2.0.10                    | ThaumicInventoryScanning_1.12.2-2.0.10.jar                | None                                     |        | LCHIJA | thaumicperiphery                  | 0.3.1                     | thaumicperiphery-0.3.1.jar                                | None                                     |        | LCHIJA | thaumicrestoration                | 1.5.0                     | ThaumicRestoration-1.5.0.jar                              | None                                     |        | LCHIJA | thaumictinkerer                   | 1.12.2-5.0-620a0c5        | thaumictinkerer-1.12.2-5.0-620a0c5.jar                    | None                                     |        | LCHIJA | thaumicwonders                    | 1.8.2                     | thaumicwonders-1.8.2.jar                                  | None                                     |        | LCHIJA | beneath                           | 1.7.1                     | The Beneath-1.12.2-1.7.1.jar                              | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | thermalcultivation                | 0.3.6                     | ThermalCultivation-1.12.2-0.3.6.1-universal.jar           | None                                     |        | LCHIJA | thermaldynamics                   | 2.5.6                     | ThermalDynamics-1.12.2-2.5.6.1-universal.jar              | None                                     |        | LCHIJA | thermalinnovation                 | 0.3.6                     | ThermalInnovation-1.12.2-0.3.6.1-universal.jar            | None                                     |        | LCHIJA | tinker_io                         | rw2.8.3                   | tinker_io-1.12.2-rw2.8.3.jar                              | None                                     |        | LCHIJA | tinkersaddons                     | 1.0.7                     | Tinkers' Addons-1.12.1-1.0.7.jar                          | None                                     |        | LCHIJA | tcomplement                       | 1.12.2-0.4.3              | TinkersComplement-1.12.2-0.4.3.jar                        | None                                     |        | LCHIJA | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769  | TinkerToolLeveling-1.12.2-1.1.0.jar                       | None                                     |        | LCHIJA | torchmaster                       | 1.8.5.0                   | torchmaster_1.12.2-1.8.5.0.jar                            | None                                     |        | LCHIJA | totemic                           | 1.12.2-0.11.7             | Totemic-1.12.2-0.11.7.jar                                 | None                                     |        | LCHIJA | trackapi                          | 1.2                       | TrackAPI-1.2.jar                                          | None                                     |        | LCHIJA | universalmodcore                  | 1.1.4                     | UniversalModCore-1.12.2-forge-1.1.4-2b81e7.jar            | None                                     |        | LCHIJA | valkyrielib                       | 1.12.2-2.0.20.1           | valkyrielib-1.12.2-2.0.20.1.jar                           | None                                     |        | LCHIJA | universalmodifiers                | 1.12.2-1.0.16.1           | valkyrielib-1.12.2-2.0.20.1.jar                           | None                                     |        | LCHIJA | vampiresneedumbrellas             | 1.4                       | VampiresNeedUmbrellas-1.12.2-1.5.jar                      | None                                     |        | LCHIJA | vampirism                         | 1.6.2                     | Vampirism-1.12.2-1.6.2.jar                                | None                                     |        | LCHIJA | teamlapen-lib                     | 1.6.2                     | Vampirism-1.12.2-1.6.2.jar                                | None                                     |        | LCHIJA | vampirism_integrations            | vampirism_integrations    | VampirismIntegrations-1.12.2-1.3.0.jar                    | None                                     |        | LCHIJA | vanillafix                        | 1.0.10-150                | VanillaFix-1.0.10-150.jar                                 | None                                     |        | LCHIJA | vc                                | 5.10-final                | vc-1.12.2-5.10-final.jar                                  | None                                     |        | LCHIJA | wailaharvestability               | 1.1.12                    | WailaHarvestability-mc1.12-1.1.12.jar                     | None                                     |        | LCHIJA | wanionlib                         | 1.12.2-2.9                | WanionLib-1.12.2-2.9.jar                                  | None                                     |        | LCHIJA | wawla                             | 2.6.275                   | Wawla-1.12.2-2.6.275.jar                                  | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | waystones                         | 4.1.0                     | Waystones_1.12.2-4.1.0.jar                                | None                                     |        | LCHIJA | wearablebackpacks                 | 3.1.4                     | WearableBackpacks-1.12.2-3.1.4.jar                        | None                                     |        | LCHIJA | woot                              | 1.12.2-1.4.11             | woot-1.12.2-1.4.11.jar                                    | None                                     |        | LCHIJA | wrcbe                             | 2.3.2                     | WR-CBE-1.12.2-2.3.2.33-universal.jar                      | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | recipehandler                     | 0.14                      | YARCF-0.14(1.12.2).jar                                    | None                                     |        | LCHIJA | phosphor-lighting                 | 1.12.2-0.2.6              | phosphor-1.12.2-0.2.6+build50-universal.jar               | f0387d288626cc2d937daa504e74af570c52a2f1 |        | LCHIJA | ancientspellcraft                 | 1.12.2-1.5.9              | AncientSpellcraft-1.12.2-1.5.9.jar                        | None                                     |        | LCHIJA | immersiveintelligence             | 0.2.1                     | immersiveintelligence-0.2.1.jar                           | 770570c49a2652e64a9b29b9b9d9919ca68b7065 |        | LCHIJA | structurize                       | 1.12.2-0.10.277-RELEASE   | structurize-1.12.2-0.10.277-RELEASE.jar                   | None                                     |        | LCHIJA | minecolonies                      | 1.12.2-0.11.841-ALPHA     | minecolonies-1.12.2-0.11.841-BETA-universal.jar           | None                                     |        | LCHIJA | solcarrot                         | 1.8.4                     | solcarrot-1.12.2-1.8.4.jar                                | None                                     |        | LCHIJA | wizardryutils                     | 1.12.2-1.1.4              | WizardryUtils-1.12.2-1.1.4.jar                            | None                                     |        | LCHIJA | spellbundle                       | 1.12.2-1.1.3              | SpellBundle-1.12.2-1.1.3.jar                              | None                                     |        | LCHIJA | armoryexpansion-conarm            | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | eleccoreloader                    | 1.9.453                   | ElecCore-1.12.2-1.9.453.jar                               | None                                     |        | LCHIJA | librarianliblate                  | 4.22                      | librarianlib-1.12.2-4.22.jar                              | None                                     |        | LCHIJA | mysticallib                       | 1.12.2-1.13.0             | mysticallib-1.12.2-1.13.0.jar                             | None                                     |        | LCHIJA | teslacorelib_registries           | 1.0.18                    | tesla-core-lib-1.12.2-1.0.18.jar                          | None                                     |        | LCHIJA | unidict                           | 1.12.2-3.0.10             | UniDict-1.12.2-3.0.10.jar                                 | None                                     |        | LCHIJA | wrapup                            | 1.12-1.1.3                | WrapUp-1.12-1.1.3.jar                                     | None                                     |        | UD     | advancedrocketrycore              | 1                         | minecraft.jar                                             | None                                     |        | UD     | mtqfix                            | 1.1.0                     | minecraft.jar                                             | None                                     |   Loaded coremods (and transformers): IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)                                         blusunrize.immersiveengineering.common.asm.IEClassTransformer                                       EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)                                         nihiltres.engineersdoors.common.asm.EngineersDoorsClassTransformer                                       LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)                                         com.teamwizardry.librarianlib.asm.LibLibTransformer                                       ParticleCullingLoadingPlugin (particleculling-1.12.2-v1.4.1.jar)                                                                                MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)                                         mekanism.coremod.KeybindingMigrationHelper                                       TransformerLoader (OpenComputers-MC1.12.2-1.7.7+5413028.jar)                                         li.cil.oc.common.asm.ClassTransformer                                       BewitchmentFMLLoadingPlugin (bewitchment-1.12.2-0.0.22.64.jar)                                                                                AppleCore (AppleCore-mc1.12.2-3.4.0.jar)                                         squeek.applecore.asm.TransformerModuleHandler                                       IILoadingPlugin (immersiveintelligence-core-0.2.1.jar)                                         pl.pabilo8.immersiveintelligence.common.asm.IIClassTransformer                                       ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)                                         com.mrcrayfish.obfuscate.asm.ObfuscateTransformer                                       ClsPlugin (CustomLoadingScreen-1.12.2-1.5.7.jar)                                         alexiil.mc.mod.load.coremod.ClsTransformer                                       UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)                                         wanion.unidict.core.UniDictCoreModTransformer                                       EntityCullingPlugin (EntityCulling-1.12.2-6.3.1.jar)                                         meldexun.entityculling.asm.EntityCullingClassTransformer                                       Thaumic Augmentation Core Plugin (ThaumicAugmentation-1.12.2-2.1.10.jar)                                         thecodex6824.thaumicaugmentation.core.TATransformer                                       Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)                                         invtweaks.forge.asm.ContainerTransformer                                       EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)                                         com.enderio.core.common.transform.EnderCoreTransformer                                         com.enderio.core.common.transform.SimpleMixinPatcher                                       PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50-universal.jar)                                                                                ChunkGenLimiterCoremod (chunkgenlimiter-1.1-core.jar)                                         io.github.barteks2x.chunkgenlimiter.coremod.ChunkGenLimitTransformer                                       GITDLoadingPlugin (getittogetherdrops-1.12.2-v1.0.2.jar)                                                                                RenderLibPlugin (RenderLib-1.12.2-1.2.7.jar)                                         meldexun.renderlib.asm.RenderLibClassTransformer                                       IvToolkit (IvToolkit-1.3.3-1.12.jar)                                                                                AdvancedRocketryPlugin (AdvancedRocketry-1.12.2-2.0.0-13.jar)                                         zmaster587.advancedRocketry.asm.ClassTransformer                                       KonkreteCore (konkrete_forge_1.6.0_MC_1.12-1.12.2.jar)                                                                                SuperMartijn642's Core Lib Plugin (supermartijn642corelib-1.1.6-forge-mc1.12.jar)                                                                                MixinBooter (!mixinbooter-7.1.jar)                                                                                SoundUnpack (OpenSecurity-1.12.2-1.0-93.jar)                                                                                Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)                                         pl.asie.foamfix.coremod.FoamFixTransformer                                       ForgelinPlugin (Forgelin-1.8.4.jar)                                                                                CreativePatchingLoader (CreativeCore_v1.10.70_mc1.12.2.jar)                                                                                OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)                                         openmods.core.OpenModsClassTransformer                                       FutureMC (future-mc-0.2.11.jar)                                         thedarkcolour.futuremc.asm.CoreTransformer                                       CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)                                         team.chisel.ctm.client.asm.CTMTransformer                                       Born in a Barn (Born In A Barn V1.8-1.12-1.1.jar)                                         com.chocohead.biab.BornInABarn                                       NothiriumPlugin (Nothirium-1.12.2-0.2.4-beta.jar)                                         meldexun.nothirium.mc.asm.NothiriumClassTransformer                                       llibrary (llibrary-core-1.0.11-1.12.2.jar)                                         net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer                                         net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher                                       AstralCore (astralsorcery-1.12.2-1.10.27.jar)                                                                                ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)                                         shetiphian.asm.ClassTransformer                                       VanillaFixLoadingPlugin (VanillaFix-1.0.10-150.jar)                                                                                JustEnoughIDs Extension Plugin (JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar)                                         org.dimdev.jeid.JEIDTransformer                                       CorePlugin (ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar)                                                                                HCASM (HammerLib-1.12.2-2.0.6.32.jar)                                         com.zeitheron.hammercore.asm.HammerCoreTransformer                                       SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar)                                         com.wynprice.secretroomsmod.core.SecretRoomsTransformer                                       Better Biome Blend (betterbiomeblend-1.12.2-1.1.7-forge.jar)                                                                                TARCore (ThaumicAdditions-1.12.2-12.7.8.jar)                                                                                MtqFixPlugin (mtqfix-1.12.2-1.1.0.jar)                                         jmn.mods.mtqfix.AsmTransformer   GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.   OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:FINISHED],[player_render_hook:FINISHED],[horse_null_fix:FINISHED]   Ender IO: Found the following problem(s) with your installation (That does NOT mean that Ender IO caused the crash or was involved in it in any way. We add this information to help finding common problems, not as an invitation to post any crash you encounter to Ender IO's issue tracker. Always check the stack trace above to see which mod is most likely failing.):                               * Optifine is installed. This is NOT supported.                              This may (look up the meaning of 'may' in the dictionary if you're not sure what it means) have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.             Authlib is : /C:/Users/Cercyon/curseforge/minecraft/Install/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar                          !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!             !!!You are looking at the diagnostics information, not at the crash.       !!!             !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!             !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   Pulsar/tconstruct loaded Pulses: - TinkerCommons (Enabled/Forced)                                    - TinkerWorld (Enabled/Not Forced)                                    - TinkerTools (Enabled/Not Forced)                                    - TinkerHarvestTools (Enabled/Forced)                                    - TinkerMeleeWeapons (Enabled/Forced)                                    - TinkerRangedWeapons (Enabled/Forced)                                    - TinkerModifiers (Enabled/Forced)                                    - TinkerSmeltery (Enabled/Not Forced)                                    - TinkerGadgets (Enabled/Not Forced)                                    - TinkerOredict (Enabled/Forced)                                    - TinkerIntegration (Enabled/Forced)                                    - TinkerFluids (Enabled/Forced)                                    - TinkerMaterials (Enabled/Forced)                                    - TinkerModelRegister (Enabled/Forced)                                    - chiselIntegration (Enabled/Not Forced)                                    - craftingtweaksIntegration (Enabled/Not Forced)                                    - wailaIntegration (Enabled/Not Forced)   AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768   Pulsar/natura loaded Pulses: - NaturaCommons (Enabled/Forced)                                - NaturaOverworld (Enabled/Not Forced)                                - NaturaNether (Enabled/Not Forced)                                - NaturaDecorative (Enabled/Not Forced)                                - NaturaTools (Enabled/Not Forced)                                - NaturaEntities (Enabled/Not Forced)                                - NaturaOredict (Enabled/Forced)                                - NaturaWorld (Enabled/Not Forced)                                - craftingtweaksIntegration (Enabled/Not Forced)   HammerCore Debug Information: Dependent Mods:                                 -Expanded Equivalence (expequiv) @ 12.3.17                                 -Thaumic Additions: Reconstructed (thaumadditions) @ 12.7.8   Pulsar/tcomplement loaded Pulses: - ModuleCommons (Enabled/Forced)                                     - ModuleMelter (Enabled/Not Forced)                                     - ModuleArmor (Enabled/Not Forced)                                     - ModuleSteelworks (Enabled/Not Forced)                                     - ChiselPlugin (Enabled/Not Forced)                                     - ToolLevelingPlugin (Enabled/Not Forced)                                     - Oredict (Enabled/Forced)   List of loaded APIs: * AbyssalCraftAPI (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Biome (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Block (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Caps (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Condition (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Disruption (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Energy (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Entity (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Event (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Integration (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Internal (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Item (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Necronomicon (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Recipe (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Rending (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Ritual (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Spell (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Structure (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Transfer (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|TransferCaps (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AppleCoreAPI (3.4.0) from AppleCore-mc1.12.2-3.4.0.jar                        * appliedenergistics2|API (rv6) from appliedenergistics2-rv6-stable-7.jar                        * Base|API (1.0.0) from base-1.12.2-3.14.0.jar                        * Baubles|API (1.4.0.2) from Baubles-1.12-1.5.2.jar                        * BetterWithModsAPI (Beta 0.6) from AppleSkin-mc1.12-1.0.14.jar                        * bigreactors|API (4.0.1) from ExtremeReactors-1.12.2-0.4.5.68.jar                        * bloodmagic-api (2.0.0) from BloodMagic-1.12.2-2.4.3-105.jar                        * BotaniaAPI (79) from AkashicTome-1.2-12.jar                        * buildcraftapi_blocks (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_boards (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_core (2.2) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_crops (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_enums (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_events (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_facades (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_filler (5.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_fuels (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_gates (4.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_items (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_library (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_lists (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_power (1.3) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_recipes (3.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_robotics (3.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_statements (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_tiles (1.2) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_tools (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_transport (5.0) from buildcraft-all-7.99.24.8.jar                        * Chisel-API (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar                        * ChiselAPI|Carving (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar                        * cofhapi (2.5.0) from CoFHCore-1.12.2-4.6.6.1-universal.jar                        * CraftingTweaks|API (4.1) from CraftingTweaks_1.12.2-8.1.9.jar                        * CSLib|API (1.0.1) from PTRLib-1.0.5.jar                        * ctm-api (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-events (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-models (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-textures (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-utils (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * DR-API (1.0.4-Beta) from deepresonance-1.12-1.8.0.jar                        * DraconicEvolution|API (1.3) from Draconic-Evolution-1.12.2-2.3.28.354-universal.jar                        * ElecCoreAPI (1.0.0) from ElecCore-1.12.2-1.9.453.jar                        * enderioapi (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|addon (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|capacitor (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|conduits (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|farm (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|redstone (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|teleport (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|tools (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|upgrades (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * ForestryAPI|apiculture (5.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|arboriculture (4.3.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|book (5.8.1) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|circuits (3.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|climate (5.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|core (5.7.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|farming (5.8.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|food (1.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|fuels (3.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|genetics (5.7.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|gui (5.8.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|hives (4.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|lepidopterology (1.4.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|mail (3.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|modules (5.7.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|multiblock (3.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|recipes (5.4.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|storage (5.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|world (2.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForgeEndertechAPI (1.0) from ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar                        * Guide-API|API (2.0.0) from Guide-API-1.12-2.1.8-63.jar                        * iChunUtil API (1.2.0) from iChunUtil-1.12.2-7.2.2.jar                        * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.12-98.jar                        * ImmersiveEngineering|ImmersiveFluxAPI (1.0) from ImmersiveEngineering-0.12-98.jar                        * industrialforegoingapi (5) from industrialforegoing-1.12.2-1.12.13-237.jar                        * jeresources|API (0.9.2.60) from JustEnoughResources-1.12.2-0.9.2.60.jar                        * journeymap|client-api (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-display (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-event (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-model (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-util (1.4) from journeymap-1.12.2-5.7.1.jar                        * JustEnoughItemsAPI (4.13.0) from jei_1.12.2-4.16.1.301.jar                        * MatterOverdrive|API (0.4.1) from MatterOverdrive-1.12.2-0.7.1.0-universal.jar                        * MekanismAPI|core (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|energy (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|gas (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|infuse (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|laser (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|transmitter (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|util (9.0.0) from Mekanism-1.12.2-9.8.3.390.jar                        * minecolonies-api (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|achievements (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|decorative (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|huts (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|interfaces (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|types (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client|render (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client|render|modeltype (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client|render|modeltype|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings|views (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings|workerbuildings (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|guardtype (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|guardtype|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|jobs (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|jobs|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|managers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|managers|interfaces (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|permissions (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|data (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|factory (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|factory|standard (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|location (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|manager (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|request (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|requestable (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|requestable|crafting (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|requester (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|resolver (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|resolver|player (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|resolver|retrying (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|token (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|workorders (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|candb (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|dynamictrees (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|gbook (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|tinkers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|configuration (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|crafting (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|creativetab (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|citizen (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|citizen|builder (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|citizen|guards (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|pathfinding (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|basestatemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|states (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|tickratestatemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|transition (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|citizen (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|citizen|citizenhandlers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs|barbarians (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs|pirates (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs|util (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|pathfinding (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|pathfinding|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|inventory (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|inventory|api (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|items (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|network (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|sounds (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|tileentities (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|util (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|util|constants (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-blockout (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-blockout|controls (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-blockout|views (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * MouseTweaks|API (1.0) from MouseTweaks-2.10-mc1.12.2.jar                        * openblocks|api (1.2) from OpenBlocks-1.12.2-1.8.1.jar                        * opencomputersapi|component (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|core (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|driver (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|driver|item (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|event (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|filesystem (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|internal (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|machine (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|manual (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|network (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|prefab (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * PatchouliAPI (6) from Patchouli-1.0-23.6.jar                        * PneumaticCraftApi (1.1) from pneumaticcraft-repressurized-1.12.2-0.11.15-398.jar                        * practicallogistics2-api (3.1) from practicallogistics2-1.12.2-3.0.8-11.jar                        * projecteapi (1.12.2-1.2.0) from ProjectE-1.12.2-PE1.4.1.jar                        * projectred|api (2.1) from ProjectRed-1.12.2-4.9.4.120-Base.jar                        * PsiAPI (16) from Psi-r1.1-78.2.jar                        * redstonefluxapi (2.1.1) from RedstoneFlux-1.12-2.1.1.1-universal.jar                        * sonarapi (1.0.1) from sonarcore-1.12.2-5.0.19-20.jar                        * StorageDrawersAPI (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|event (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|registry (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|render (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|storage (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|storage-attribute (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * Thaumcraft|API (6.0.2) from Thaumcraft-1.12.2-6.1.BETA26.jar                        * thaumicaugmentationapi (2.1.10) from ThaumicAugmentation-1.12.2-2.1.10.jar                        * tombstone-api (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * tombstone-api-capability (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * tombstone-api-event (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * tombstone-api-magic (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * totemic|API (1.12.2-7.1.0) from Totemic-1.12.2-0.11.7.jar                        * valkyrielib.api (1.12.2-2.0.10a) from valkyrielib-1.12.2-2.0.20.1.jar                        * VampirismAPI (1.4) from Vampirism-1.12.2-1.6.2.jar                        * WailaAPI (1.3) from Hwyla-1.8.26-B41_1.12.2.jar                        * zerocore|API|multiblock (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar                        * zerocore|API|multiblock|rectangular (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar                        * zerocore|API|multiblock|tier (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar                        * zerocore|API|multiblock|validation (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar   Patchouli open book context: n/a   [Psi] Active spell: None   AE2 Integration: IC2:ON, RC:OFF, MFR:OFF, Waila:ON, InvTweaks:ON, JEI:ON, Mekanism:ON, OpenComputers:ON, THE_ONE_PROBE:OFF, TESLA:OFF, CRAFTTWEAKER:ON   Suspected Mods: Unknown   Profiler Position: N/A (disabled)   Player Count: 1 / 8; [EntityPlayerMP['Cercyon_Chronos'/513, l='New World', x=-344.25, y=98.23, z=-161.53]]   Type: Integrated Server (map_client.txt)   Is Modded: Definitely; Client brand changed to 'fml,forge'
    • I don't understand why minecraft crashes when I log in to the server https://mclo.gs/jZVia3x crash log
    • ---- Minecraft Crash Report ---- // You're mean. Time: 3/29/23 9:20 PM Description: Exception ticking world java.util.ConcurrentModificationException: null     at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1380) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) ~[?:1.8.0_51] {}     at java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:312) ~[?:1.8.0_51] {}     at java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:743) ~[?:1.8.0_51] {}     at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580) ~[?:1.8.0_51] {}     at net.minecraft.world.IServerWorld.func_242417_l(SourceFile:11) ~[?:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234966_a_(WorldEntitySpawner.java:178) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234967_a_(WorldEntitySpawner.java:124) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234979_a_(WorldEntitySpawner.java:110) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_241099_a_(ServerChunkProvider.java:364) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider$$Lambda$56374/371688629.accept(Unknown Source) ~[?:?] {}     at java.util.ArrayList.forEach(ArrayList.java:1249) ~[?:1.8.0_51] {}     at net.minecraft.world.server.ServerChunkProvider.func_217220_m(ServerChunkProvider.java:351) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_217207_a(ServerChunkProvider.java:326) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerWorld.func_72835_b(ServerWorld.java:333) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cavesandcliffs.mixins.json:common.world.gen.ServerWorldMixin,pl:mixin:APP:library_of_exile-mixins.json:ServerWorldMixin,pl:mixin:APP:architects_palette.mixins.json:ServerWorldMixin,pl:mixin:APP:abnormals_core.mixins.json:ServerWorldMixin,pl:mixin:APP:endergetic.mixins.json:ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_random.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.world_ticking.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:entity.inactive_navigations.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:world.tick_scheduler.ServerWorldMixin,pl:mixin:APP:quark.mixins.json:ServerWorldMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerWorld,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:851) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:78) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$54373/611958440.run(Unknown Source) [?:?] {}     at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace:     at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1380) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) ~[?:1.8.0_51] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) ~[?:1.8.0_51] {}     at java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:312) ~[?:1.8.0_51] {}     at java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:743) ~[?:1.8.0_51] {}     at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580) ~[?:1.8.0_51] {}     at net.minecraft.world.IServerWorld.func_242417_l(SourceFile:11) ~[?:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234966_a_(WorldEntitySpawner.java:178) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234967_a_(WorldEntitySpawner.java:124) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.spawner.WorldEntitySpawner.func_234979_a_(WorldEntitySpawner.java:110) ~[?:?] {re:mixin,re:classloading,pl:mixin:APP:enhancedcelestials.mixins.json:MixinWorldEntitySpawner,pl:mixin:APP:enhancedcelestials.mixins.json:access.WorldEntitySpawnerAccess,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_241099_a_(ServerChunkProvider.java:364) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider$$Lambda$56374/371688629.accept(Unknown Source) ~[?:?] {}     at java.util.ArrayList.forEach(ArrayList.java:1249) ~[?:1.8.0_51] {}     at net.minecraft.world.server.ServerChunkProvider.func_217220_m(ServerChunkProvider.java:351) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerChunkProvider.func_217207_a(ServerChunkProvider.java:326) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_ticking.ServerChunkManagerMixin,pl:mixin:APP:roadrunner.mixins.json:world.chunk_access.ServerChunkManagerMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerChunkProvider,pl:mixin:A}     at net.minecraft.world.server.ServerWorld.func_72835_b(ServerWorld.java:333) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cavesandcliffs.mixins.json:common.world.gen.ServerWorldMixin,pl:mixin:APP:library_of_exile-mixins.json:ServerWorldMixin,pl:mixin:APP:architects_palette.mixins.json:ServerWorldMixin,pl:mixin:APP:abnormals_core.mixins.json:ServerWorldMixin,pl:mixin:APP:endergetic.mixins.json:ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.chunk_random.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:alloc.world_ticking.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:entity.inactive_navigations.ServerWorldMixin,pl:mixin:APP:roadrunner.mixins.json:world.tick_scheduler.ServerWorldMixin,pl:mixin:APP:quark.mixins.json:ServerWorldMixin,pl:mixin:APP:enhancedcelestials.mixins.json:MixinServerWorld,pl:mixin:A} -- Affected level -- Details:     All players: 1 total; [ServerPlayerEntity['Vy_Victory'/2269, l='ServerLevel[New World test]', x=-232.37, y=67.00, z=-57.79]]     Chunk stats: ServerChunkCache: 2025     Level dimension: minecraft:overworld     Level spawn location: World: (-123,63,-149), Chunk: (at 5,3,11 in -8,-10; contains blocks -128,0,-160 to -113,255,-145), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)     Level time: 1009 game time, 1009 day time     Level name: New World test     Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false     Level weather: Rain time: 35160 (now: false), thunder time: 32599 (now: false)     Known server brands: forge     Level was modded: true     Level storage version: 0x04ABD - Anvil Stacktrace:     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:851) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:78) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:roadrunner.mixins.json:world.light_batching.MinecraftServerMixin,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$54373/611958440.run(Unknown Source) [?:?] {}     at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} -- System Details -- Details:     Minecraft Version: 1.16.5     Minecraft Version ID: 1.16.5     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 5491559560 bytes (5237 MB) / 11145314304 bytes (10629 MB) up to 11185160192 bytes (10667 MB)     CPUs: 12     JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12288m -Xms256m -Xmx12000m -Xms12000m     ModLauncher: 8.1.3+8.1.3+main-8.1.x.c94d18ec     ModLauncher launch target: fmlclient     ModLauncher naming: srg     ModLauncher services:          /mixin-0.8.4.jar mixin PLUGINSERVICE          /eventbus-4.0.0.jar eventbus PLUGINSERVICE          /forge-1.16.5-36.2.34.jar object_holder_definalize PLUGINSERVICE          /forge-1.16.5-36.2.34.jar runtime_enum_extender PLUGINSERVICE          /accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE          /forge-1.16.5-36.2.34.jar capability_inject_definalize PLUGINSERVICE          /forge-1.16.5-36.2.34.jar runtimedistcleaner PLUGINSERVICE          /mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE          /forge-1.16.5-36.2.34.jar fml TRANSFORMATIONSERVICE      FML: 36.2     Forge: net.minecraftforge:36.2.34     FML Language Providers:          javafml@36.2         minecraft@1         kotlinforforge@1.17.0     Mod List:          dynamiclightsreforged-mc1.16.5_v1.0.1.jar         |Dynamic Lights Reforged       |dynamiclightsreforged         |mc1.16.5_v1.0.1     |DONE      |Manifest: NOSIGNATURE         create-stuff-additions1.16.5_v1.1.6.jar           |Create Stuff Additions        |create_stuff_additions        |1.1.6               |DONE      |Manifest: NOSIGNATURE         BetterDungeons-1.16.4-1.2.1.jar                   |YUNG's Better Dungeons        |betterdungeons                |1.16.4-1.2.1        |DONE      |Manifest: NOSIGNATURE         ftb-essentials-1605.1.5-build.32.jar              |FTB Essentials                |ftbessentials                 |1605.1.5-build.32   |DONE      |Manifest: NOSIGNATURE         infernal-expansion-1.16.5-2.5.0.jar               |Infernal Expansion            |infernalexp                   |2.5.0               |DONE      |Manifest: NOSIGNATURE         nether-s-exoticism-1.16.5-1.1.10.jar              |Nether's Exoticism            |nethers_exoticism             |1.1.10              |DONE      |Manifest: NOSIGNATURE         mcw-windows-2.0.3-mc1.16.5.jar                    |Macaw's Windows               |mcwwindows                    |2.0.3               |DONE      |Manifest: NOSIGNATURE         stalwart-dungeons-1.16.5-1.1.7.jar                |Stalwart Dungeons             |stalwart_dungeons             |1.1.7               |DONE      |Manifest: NOSIGNATURE         strawgolem-1.16-1.9.jar                           |Straw Golem                   |strawgolem                    |1.16-1.9            |DONE      |Manifest: NOSIGNATURE         BetterCaves-Forge-1.16.4-1.1.2.jar                |YUNG's Better Caves           |bettercaves                   |1.16.4-1.1.2        |DONE      |Manifest: NOSIGNATURE         farmersdelightintegrations-1.16.5-1.2.jar         |Farmer's Delight Compats      |farmersdelightintegrations    |1.16.5-1.2          |DONE      |Manifest: NOSIGNATURE         YungsApi-1.16.4-Forge-13.jar                      |YUNG's API                    |yungsapi                      |1.16.4-Forge-13     |DONE      |Manifest: NOSIGNATURE         upgradednetherite_items-1.16.5-1.1.0.2-release.jar|Upgraded Netherite : Items    |upgradednetherite_items       |1.16.5-1.1.0.2-relea|DONE      |Manifest: NOSIGNATURE         lootbeams-1.16.5-release-july1722.jar             |LootBeams                     |lootbeams                     |1.16.5              |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.16.5.1.2.6.jar                   |Guard Villagers               |guardvillagers                |1.2.6               |DONE      |Manifest: NOSIGNATURE         randompatches-2.4.4-forge.jar                     |RandomPatches                 |randompatches                 |2.4.4-forge         |DONE      |Manifest: 92:f6:29:d4:09:89:f5:f5:98:5e:20:34:31:d0:7b:58:22:06:bd:a5:d1:6a:92:6e:ac:3d:8d:18:c5:b2:5b:d7         HarderSpawners-1.16.5-1.36.0.18.jar               |Harder Spawners Mod           |harderspawners                |1.36.0.17           |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.16.5-4.8.9A0.jar                     |Apotheosis                    |apotheosis                    |4.8.9A0             |DONE      |Manifest: NOSIGNATURE         abyg-1.2-forge.jar                                |[BYG Addon] Enhanced Vanilla B|bygvanillabiomes              |1.0.0               |DONE      |Manifest: NOSIGNATURE         what_did_you_vote_for-1.16.5-1.0.5.jar            |What Did You Vote For?        |whatareyouvotingfor           |1.0                 |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.16.5-0.12.1.133.jar         |Just Enough Resources         |jeresources                   |0.12.1.133          |DONE      |Manifest: NOSIGNATURE         TinkersDelight-1.16-1.8.jar                       |Tinker's Delight              |tdelight                      |1.16-1.8            |DONE      |Manifest: NOSIGNATURE         Paraglider-1.16.5-1.3.2.10.jar                    |Paraglider                    |paraglider                    |1.3.2.10            |DONE      |Manifest: NOSIGNATURE         RevampedWolf-1.16.4-0.7.1.jar                     |RevampedWolf                  |revampedwolf                  |1.16.4-0.7.1        |DONE      |Manifest: NOSIGNATURE         supplementaries-1.16.5-0.18.4b.jar                |Supplementaries               |supplementaries               |0.18.2              |DONE      |Manifest: NOSIGNATURE         upgradednetherite-1.16.5-2.1.0.1-release.jar      |Upgraded Netherite            |upgradednetherite             |1.16.5-2.1.0.1-relea|DONE      |Manifest: NOSIGNATURE         structure_gel-1.16.5-1.7.8.jar                    |Structure Gel API             |structure_gel                 |1.7.8               |DONE      |Manifest: NOSIGNATURE         corpse-1.16.5-1.0.6.jar                           |Corpse                        |corpse                        |1.16.5-1.0.6        |DONE      |Manifest: NOSIGNATURE         TinySkeletons-v1.0.1-1.16.5-Forge.jar             |Tiny Skeletons                |tinyskeletons                 |1.0.1               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         TenshiLib-1.16.3-1.3.0.jar                        |TenshiLib                     |tenshilib                     |1.16.3-1.3.0        |DONE      |Manifest: NOSIGNATURE         cleancut-mc1.16-2.2-forge.jar                     |Clean Cut                     |cleancut                      |2.2                 |DONE      |Manifest: NOSIGNATURE         torchmaster-2.3.8.jar                             |Torchmaster                   |torchmaster                   |2.3.8               |DONE      |Manifest: NOSIGNATURE         repurposed_structures_forge-3.4.7+1.16.5.jar      |Repurposed Structures         |repurposed_structures         |3.4.7+1.16.5        |DONE      |Manifest: NOSIGNATURE         morevillagers-FORGE-1.16.5-1.5.5.jar              |More Villagers                |morevillagers                 |1.5.5               |DONE      |Manifest: NOSIGNATURE         BetterCompatibilityChecker-1.0.7-build.22+mc1.16.5|Better Compatibility Checker  |bcc                           |1.0.7-build.22+mc1.1|DONE      |Manifest: NOSIGNATURE         MorePaths-1.16.1-1.3.2.jar                        |MorePaths                     |morepaths                     |1.16-1.3.2          |DONE      |Manifest: NOSIGNATURE         Aquamirae 3.0.0.jar                               |Aquamirae                     |ob_aquamirae                  |3.0.0               |DONE      |Manifest: NOSIGNATURE         dungeons_plus-1.16.5-1.1.5.jar                    |Dungeons Plus                 |dungeons_plus                 |1.1.5               |DONE      |Manifest: NOSIGNATURE         UnusualEnd1.16_V1.1.8.jar                         |Unusual End                   |unusualend                    |1.1.0               |DONE      |Manifest: NOSIGNATURE         mcw-trapdoors-1.0.7-mc1.16.5.jar                  |Macaw's Trapdoors             |mcwtrpdoors                   |1.0.7               |DONE      |Manifest: NOSIGNATURE         silent-gear-1.16.5-2.6.30.jar                     |Silent Gear                   |silentgear                    |2.6.30              |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.0.19-forge-mc1.16.5.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.0.19              |DONE      |Manifest: NOSIGNATURE         BetterDefaultBiomes-1.16.4+-Alpha 2.6.1.jar       |Better Default Biomes         |betterdefaultbiomes           |Alpha 2.6.0         |DONE      |Manifest: NOSIGNATURE         YungsBridges-Forge-1.16.4-1.0.1.jar               |YUNG's Bridges                |yungsbridges                  |1.16.4-1.0.1        |DONE      |Manifest: NOSIGNATURE         cavesandcliffs-1.16.5-7.2.0.jar                   |Caves and Cliffs Backport     |cavesandcliffs                |1.16.5-7.2.0        |DONE      |Manifest: NOSIGNATURE         darkerdepths-1.16.5-1.1.4.jar                     |Darker Depths                 |darkerdepths                  |1.1.4               |DONE      |Manifest: NOSIGNATURE         Highlighter-1.16.5-1.1.1.jar                      |Highlighter                   |highlighter                   |1.1.1               |DONE      |Manifest: NOSIGNATURE         spark-1.9.1-forge.jar                             |spark                         |spark                         |1.9.1               |DONE      |Manifest: NOSIGNATURE         curios-forge-1.16.5-4.0.5.3.jar                   |Curios API                    |curios                        |1.16.5-4.0.5.3      |DONE      |Manifest: NOSIGNATURE         Quality_Equipment-1.0.6_1.16.5.jar                |Quality Equipment             |quality_equipment             |1.0.6               |DONE      |Manifest: NOSIGNATURE         extendedmushrooms-1.16.5-1.7.0.5.jar              |Extended Mushrooms            |extendedmushrooms             |1.16.5-1.7.0.5      |DONE      |Manifest: NOSIGNATURE         levelhearts-1.16.5-2.4.0.jar                      |LevelHearts                   |levelhearts                   |2.4.0               |DONE      |Manifest: NOSIGNATURE         advancednetherite-1.12.4-1.16.5.jar               |Advanced Netherite            |advancednetherite             |1.12.4              |DONE      |Manifest: NOSIGNATURE         specialai-1.16.5-1.0.2.jar                        |Special AI                    |specialai                     |NONE                |DONE      |Manifest: NOSIGNATURE         YungsExtras-Forge-1.16.4-1.0.jar                  |YUNG's Extras                 |yungsextras                   |Forge-1.16.4-1.0    |DONE      |Manifest: NOSIGNATURE         Infinite_Dungeons-1.16.5-1.0.9.jar                |Infinite Dungeons             |infinite_dungeons             |NONE                |DONE      |Manifest: NOSIGNATURE         bettervillage-forge-1.16.5-2.1.0.jar              |Better village                |bettervillage                 |2.1.0               |DONE      |Manifest: NOSIGNATURE         obfuscate-0.6.3-1.16.5.jar                        |Obfuscate                     |obfuscate                     |0.6.3               |DONE      |Manifest: NOSIGNATURE         TheAbyss2 2.2.3-4 1.16.5.jar                      |TheAbyss                      |theabyss                      |2.2.3-4             |DONE      |Manifest: NOSIGNATURE         majruszs-difficulty-1.16.4-1.1.0.jar              |Majrusz's Progressive Difficul|majruszs_difficulty           |1.1.0               |DONE      |Manifest: NOSIGNATURE         mcw-roofs-2.2.1-mc1.16.5-forge.jar                |Macaw's Roofs                 |mcwroofs                      |2.2.1               |DONE      |Manifest: NOSIGNATURE         Project_MMO-1.16.5-3.69.0.jar                     |Project MMO                   |pmmo                          |1.16.5-3.69.0       |DONE      |Manifest: NOSIGNATURE         mutantmore-1.16.5-1.0.1.jar                       |Mutant More                   |mutantmore                    |1.0.3               |DONE      |Manifest: NOSIGNATURE         cfm-7.0.0pre22-1.16.3.jar                         |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre22         |DONE      |Manifest: NOSIGNATURE         mcw-furniture-3.0.2-mc1.16.5.jar                  |Macaw's Furniture             |mcwfurnitures                 |3.0.2               |DONE      |Manifest: NOSIGNATURE         ItemPhysic_v1.4.18_mc1.16.5.jar                   |ItemPhysic                    |itemphysic                    |1.6.0               |DONE      |Manifest: NOSIGNATURE         cloth-config-4.16.91-forge.jar                    |Cloth Config v4 API           |cloth-config                  |4.16.91             |DONE      |Manifest: NOSIGNATURE         EnhancedAI-1.2.3-mc1.16.5.jar                     |Enhanced AI                   |enhancedai                    |1.2.3               |DONE      |Manifest: NOSIGNATURE         BetterShieldsMC1.16.3-1.2.1.jar                   |Better Shields                |bettershields                 |1.2.1               |DONE      |Manifest: NOSIGNATURE         Babel-1.0.5.jar                                   |Babel                         |babel                         |1.0.5               |DONE      |Manifest: NOSIGNATURE         JEPB-1.0.0.jar                                    |Just Enough Piglin Bartering  |jepb                          |1.0.0               |DONE      |Manifest: NOSIGNATURE         BetterMineshafts-Forge-1.16.4-2.0.4.jar           |YUNG's Better Mineshafts      |bettermineshafts              |1.16.4-2.0.4        |DONE      |Manifest: NOSIGNATURE         BetterModsButton-v1.0.5-1.16.5-Forge.jar          |Better Mods Button            |bettermodsbutton              |1.0.5               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         DarkPaintings-1.16.5-6.0.11.jar                   |DarkPaintings                 |darkpaintings                 |6.0.11              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         treasure-bags-1.16.3-1.4.0.jar                    |Treasure Bags                 |treasurebags                  |1.4.0               |DONE      |Manifest: NOSIGNATURE         mcw-lights-1.0.4-mc1.16.5.jar                     |Macaw's Lights and Lamps      |mcwlights                     |1.0.4               |DONE      |Manifest: NOSIGNATURE         QuarkOddities-1.16.3.jar                          |Quark Oddities                |quarkoddities                 |1.16.3              |DONE      |Manifest: NOSIGNATURE         Kiwi-1.16.5-3.6.1.jar                             |Kiwi                          |kiwi                          |3.6.1               |DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.5.26.jar                            |Mowzie's Mobs                 |mowziesmobs                   |1.5.26              |DONE      |Manifest: NOSIGNATURE         mining_helmet-1.16.5-2.0.1.jar                    |Mining Helmet                 |mining_helmet                 |2.0.1               |DONE      |Manifest: NOSIGNATURE         ConfigMenusForge-v1.2.0-1.16.5-Forge.jar          |Config Menus for Forge        |configmenusforge              |1.2.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         TheComfortZone-1.16.5-1.0.3.jar                   |The Comfort Zone              |thecomfortzone                |1.16.5-1.0.3        |DONE      |Manifest: NOSIGNATURE         jei-1.16.5-7.7.1.153.jar                          |Just Enough Items             |jei                           |7.7.1.153           |DONE      |Manifest: NOSIGNATURE         jei-professions-1.0.0-1.16.4.jar                  |JEI Professions               |jeiprofessions                |1.0.0               |DONE      |Manifest: NOSIGNATURE         VisualWorkbench-v1.1.0-1.16.5.jar                 |Visual Workbench              |visualworkbench               |1.1.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         The_Graveyard_2.1_(FORGE)_for_1.16.4-1.16.5.jar   |The Graveyard (FORGE)         |graveyard                     |2.1                 |DONE      |Manifest: NOSIGNATURE         enderlinginvaders-1.16.5-1.0.7.jar                |Enderling Invaders            |enderlinginvaders             |1.0.7               |DONE      |Manifest: NOSIGNATURE         ComfortableNether5.2.1.jar                        |Comfortable Nether            |comfortable_nether            |1.0.0               |DONE      |Manifest: NOSIGNATURE         AttributeFix-1.16.5-10.1.4.jar                    |AttributeFix                  |attributefix                  |10.1.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         libraryferret-forge-1.16.5-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         goblintraders-1.7.3-1.16.5.jar                    |Goblin Traders                |goblintraders                 |1.7.3               |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.16.5-2.1.3.2.jar                   |Caelus API                    |caelus                        |1.16.5-2.1.3.2      |DONE      |Manifest: NOSIGNATURE         Paxi-Forge-1.16.4-1.0.jar                         |Paxi                          |paxi                          |1.16.4-1.0          |DONE      |Manifest: NOSIGNATURE         Space-BossTools-1.16.5-5.5e.jar                   |Space-BossTools               |boss_tools                    |5.5e                |DONE      |Manifest: NOSIGNATURE         HarderBranchMining-1.16.5-1.36.0.11.jar           |Harder Branch Mining Mod      |harderbranchmining            |1.16.5-1.36.0.11    |DONE      |Manifest: NOSIGNATURE         awesomedungeon-forge-1.16.5-3.1.0.jar             |Awesome dungeon               |awesomedungeon                |3.1.0               |DONE      |Manifest: NOSIGNATURE         Organics-1.16.5-0.1.9.jar                         |Organics                      |organics                      |0.1.9               |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.16.5-1.9.1-forge.jar             |Nature's Compass              |naturescompass                |1.16.5-1.9.1-forge  |DONE      |Manifest: NOSIGNATURE         1.16.5-additionalbars-2.0.3.jar                   |Additional Bars               |additionalbars                |2.0.3               |DONE      |Manifest: NOSIGNATURE         SereneSeasons-1.16.5-4.0.1.126-universal.jar      |Serene Seasons                |sereneseasons                 |1.16.5-4.0.1.126    |DONE      |Manifest: NOSIGNATURE         HQM-1.16.5-5.5.17-forge.jar                       |Hardcore Questing Mode        |hardcorequesting              |1.16.5-5.5.17       |DONE      |Manifest: NOSIGNATURE         stoneholm-1.2.2.jar                               |Stoneholm                     |stoneholm                     |1.2                 |DONE      |Manifest: NOSIGNATURE         champions-forge-1.16.5-2.0.1.16.jar               |Champions                     |champions                     |1.16.5-2.0.1.16     |DONE      |Manifest: NOSIGNATURE         curioofundying-forge-1.16.5-5.2.0.0.jar           |Curio of Undying              |curioofundying                |1.16.5-5.2.0.0      |DONE      |Manifest: NOSIGNATURE         snowundertrees-1.16.5-v1.3.jar                    |Snow Under Trees              |snowundertrees                |v1.3                |DONE      |Manifest: NOSIGNATURE         sulfuric-1.1.jar                                  |Sulfuric                      |sulfuric                      |1.0                 |DONE      |Manifest: NOSIGNATURE         outvoted-1.16.5-1.2.4.jar                         |Outvoted                      |outvoted                      |1.2.4               |DONE      |Manifest: NOSIGNATURE         additional_lights-1.16.4-2.1.3.jar                |Additional Lights             |additional_lights             |2.1.3               |DONE      |Manifest: NOSIGNATURE         JEITweaker-1.16.5-1.1.0.49.jar                    |JEI Tweaker                   |jeitweaker                    |1.1.0.49            |DONE      |Manifest: NOSIGNATURE         CraftTweaker-1.16.5-7.1.2.515.jar                 |CraftTweaker                  |crafttweaker                  |7.1.2.515           |DONE      |Manifest: NOSIGNATURE         crumbs-forge-1.0.7.jar                            |Crumbs                        |crumbs                        |1.0.7               |DONE      |Manifest: NOSIGNATURE         forge-1.16.5-36.2.34-universal.jar                |Forge                         |forge                         |36.2.34             |DONE      |Manifest: 22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90         Atum-1.16.5-2.2.12.jar                            |Atum 2                        |atum                          |1.16.5-2.2.12       |DONE      |Manifest: NOSIGNATURE         subwild-1.3.1.jar                                 |Subterranean Wilderness       |subwild                       |1.3.1               |DONE      |Manifest: NOSIGNATURE         idas_forge-1.5.5+1.16.5.jar                       |Integrated Dungeons and Struct|idas                          |1.5.5+1.16.5        |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.16.5-2.1.49-beta.jar              |When Dungeons Arise           |dungeons_arise                |2.1.49              |DONE      |Manifest: NOSIGNATURE         awesomedungeonocean-forge-1.16.5-3.2.0.jar        |Awesome dungeon edition ocean |awesomedungeonocean           |3.1.0               |DONE      |Manifest: NOSIGNATURE         forge-1.16.5-36.2.34-client.jar                   |Minecraft                     |minecraft                     |1.16.5              |DONE      |Manifest: NOSIGNATURE         sons-of-sins-1.16.5-1.0.9.jar                     |sons of sins                  |sons_of_sins                  |1.0.9               |DONE      |Manifest: NOSIGNATURE         MouseTweaks-2.14-mc1.16.2.jar                     |Mouse Tweaks                  |mousetweaks                   |2.14                |DONE      |Manifest: NOSIGNATURE         awesomedungeonnether-forge-1.16.5-3.1.1.jar       |Awesome dungeon nether        |awesomedungeonnether          |3.1.1               |DONE      |Manifest: NOSIGNATURE         totw_additions-1.1.0.jar                          |Towers of the Wild: Additions |totw_additions                |1.1.0               |DONE      |Manifest: NOSIGNATURE         storage_overhaul-1.16.5-1.0.4.jar                 |Storage Overhaul              |storage_overhaul              |1.16.5-1.0.4        |DONE      |Manifest: NOSIGNATURE         CavesCliffsBackportAdditions-3.4.1jar.jar         |CavesandCliffsbackportaddition|cavesandcliffsbackportaddition|3.4                 |DONE      |Manifest: NOSIGNATURE         paintings-1.16.4-7.0.0.1.jar                      |Paintings ++                  |paintings                     |1.16.4-6.0.1.5      |DONE      |Manifest: NOSIGNATURE         majrusz-library-1.16.4-2.0.1.jar                  |Majrusz Library               |majrusz_library               |2.0.1               |DONE      |Manifest: NOSIGNATURE         dimdungeons-1.13.1.jar                            |Dimensional Dungeons          |dimdungeons                   |1.16.4-1.13.1       |DONE      |Manifest: NOSIGNATURE         whisperwoods-1.16.5-2.1.1-forge.jar               |Whisperwoods                  |whisperwoods                  |1.16.5-2.1.1        |DONE      |Manifest: NOSIGNATURE         flywheel-1.16-0.2.5.jar                           |Flywheel                      |flywheel                      |1.16-0.2.5          |DONE      |Manifest: NOSIGNATURE         Mantle-1.16.5-1.6.157.jar                         |Mantle                        |mantle                        |1.6.157             |DONE      |Manifest: NOSIGNATURE         ftb-backups-2.1.2.2.jar                           |FTB Backups                   |ftbbackups                    |2.1.2.2             |DONE      |Manifest: NOSIGNATURE         polymorph-forge-1.16.5-0.41.jar                   |Polymorph                     |polymorph                     |1.16.5-0.41         |DONE      |Manifest: NOSIGNATURE         AutoRegLib-1.6-49.jar                             |AutoRegLib                    |autoreglib                    |1.6-49              |DONE      |Manifest: NOSIGNATURE         earthmobsmod-1.16.4-0.4.2.jar                     |Earth Mobs Mod                |earthmobsmod                  |1.16.4-0.4.2        |DONE      |Manifest: NOSIGNATURE         norecipeadvancements-1.0.1.jar                    |No Recipe Advancements        |norecipeadvancements          |1.0.1               |DONE      |Manifest: NOSIGNATURE         Library_of_Exile-1.16.5-1.2.3.jar                 |Library Of Exile              |library_of_exile              |NONE                |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.16.x-2.4.0.jar                |AppleSkin                     |appleskin                     |2.4.0+mc1.16.4      |DONE      |Manifest: NOSIGNATURE         lootr-1.16.5-0.1.15.46.jar                        |Lootr                         |lootr                         |0.1.14.45           |DONE      |Manifest: NOSIGNATURE         upgradednetherite_ultimate-1.16.5-1.1.0.3-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate    |1.16.5-1.1.0.3-relea|DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v1.0.15-1.16.5-Forge.jar               |Puzzles Lib                   |puzzleslib                    |1.0.15              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         slimy-stuff-1.16.5-1.0.6.jar                      |Slimy Stuff                   |slimy_stuff                   |1.0.6               |DONE      |Manifest: NOSIGNATURE         Obscuria's Essentials 3.0.0.jar                   |Obscuria's Essentials         |ob_core                       |3.0.0               |DONE      |Manifest: NOSIGNATURE         HarderFarther-1.16.5-1.36.0.6.jar                 |Harder Farther Mod            |harderfarther                 |1.36.0.6            |DONE      |Manifest: NOSIGNATURE         Betterlands-1.16.5-0.5.0.jar                      |Betterlands                   |betterlands                   |1.16.5-0.5.0        |DONE      |Manifest: NOSIGNATURE         CosmeticArmorReworked-1.16.5-v5.jar               |CosmeticArmorReworked         |cosmeticarmorreworked         |1.16.5-v5           |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         moreplates-1.16.5-7.4.4.jar                       |More Plates                   |moreplates                    |7.4.4               |DONE      |Manifest: NOSIGNATURE         xptome-1.16.5-v2.1.5.jar                          |XP Tome                       |xpbook                        |v2.1.5              |DONE      |Manifest: NOSIGNATURE         tetra-1.16.5-3.20.0.jar                           |Tetra                         |tetra                         |3.20.0              |DONE      |Manifest: NOSIGNATURE         tetranomicon-1.3.jar                              |Tetranomicon                  |tetranomicon                  |1.3                 |DONE      |Manifest: NOSIGNATURE         TreeChop-1.16.4-0.14.6-fixed.jar                  |HT's TreeChop                 |treechop                      |0.14.6              |DONE      |Manifest: NOSIGNATURE         litewolfcore-1.16.5v1.0.1.jar                     |LiteWolf Core                 |litewolfcore                  |1.16.5v1.0          |DONE      |Manifest: NOSIGNATURE         DungeonsMod-1.16.3-1.4.43.jar                     |Dungeons Mod                  |dungeonsmod                   |1.16.3-1.4.43       |DONE      |Manifest: NOSIGNATURE         blue_skies-1.16.5-1.1.3.jar                       |Blue Skies                    |blue_skies                    |1.1.3               |DONE      |Manifest: NOSIGNATURE         Piglin Expansion 1.2.jar                          |Piglin Expansion              |piglin_expansion              |1.1.0               |DONE      |Manifest: NOSIGNATURE         roughmobsrevamped-1.16.5-0.0.3.jar                |Rough Mobs Revamped           |roughmobsrevamped             |version             |DONE      |Manifest: NOSIGNATURE         NetherPortalFix_1.16.3-7.2.1.jar                  |NetherPortalFix               |netherportalfix               |7.2.1               |DONE      |Manifest: NOSIGNATURE         Wyrmroost-1.16.3-1.2.11.jar                       |Wyrmroost                     |wyrmroost                     |1.16.3-1.2.11       |DONE      |Manifest: NOSIGNATURE         AdditionalBanners-1.16.5-6.0.3.jar                |AdditionalBanners             |additionalbanners             |6.0.3               |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         HealthOverlay-1.16.5-3.0.1.jar                    |Health Overlay                |healthoverlay                 |3.0.1               |DONE      |Manifest: NOSIGNATURE         Architects-Palette-1.16.4-1.1.5.jar               |Architect's Palette           |architects_palette            |1.1.2               |DONE      |Manifest: NOSIGNATURE         morecfm-1.3.1-1.16.3.jar                          |MrCrayfish's More Furniture Mo|morecfm                       |1.3.1               |DONE      |Manifest: NOSIGNATURE         DoggyTalents-1.16.5-2.1.15.jar                    |Doggy Talents 2               |doggytalents                  |2.1.15              |DONE      |Manifest: NOSIGNATURE         kingvillager-1.6.3.jar                            |The King of the villagers     |kingvillager                  |1.6.3               |DONE      |Manifest: NOSIGNATURE         KleeSlabs_1.16.5-9.2.1.jar                        |KleeSlabs                     |kleeslabs                     |9.2.1               |DONE      |Manifest: NOSIGNATURE         InsaneLib-1.4.2-mc1.16.5.jar                      |InsaneLib                     |insanelib                     |1.4.2               |DONE      |Manifest: NOSIGNATURE         villagernames_1.16.5-4.3.jar                      |Villager Names                |villagernames                 |4.3                 |DONE      |Manifest: NOSIGNATURE         XaerosWorldMap_1.28.3_Forge_1.16.5.jar            |Xaero's World Map             |xaeroworldmap                 |1.28.3              |DONE      |Manifest: NOSIGNATURE         Controlling-7.0.0.29.jar                          |Controlling                   |controlling                   |7.0.0.29            |DONE      |Manifest: NOSIGNATURE         Prism-1.16.5-1.0.1.jar                            |Prism                         |prism                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         Placebo-1.16.5-4.7.0.jar                          |Placebo                       |placebo                       |4.7.0               |DONE      |Manifest: NOSIGNATURE         citadel-1.8.1-1.16.5.jar                          |Citadel                       |citadel                       |1.8.1               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.12.1.jar                              |Alex's Mobs                   |alexsmobs                     |1.12.1              |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.11-1.16.5.jar                      |Ice and Fire                  |iceandfire                    |2.1.11-1.16.5       |DONE      |Manifest: NOSIGNATURE         lootintegrations-1.2.jar                          |Lootintegrations mod          |lootintegrations              |1.2                 |DONE      |Manifest: NOSIGNATURE         moreminecarts-1.3.16.jar                          |More Minecarts                |moreminecarts                 |1.3.16              |DONE      |Manifest: NOSIGNATURE         MutantBeasts-1.16.4-1.1.3.jar                     |Mutant Beasts                 |mutantbeasts                  |1.16.4-1.1.3        |DONE      |Manifest: d9:be:bd:b6:9a:e4:14:aa:05:67:fb:84:06:77:a0:c5:10:ec:27:15:1b:d6:c0:88:49:9a:ef:26:77:61:0b:5e         Bookshelf-Forge-1.16.5-10.4.32.jar                |Bookshelf                     |bookshelf                     |10.4.32             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sophisticatedbackpacks-1.16.5-3.15.19.721.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.16.5-3.15.19.721  |DONE      |Manifest: NOSIGNATURE         ProgressiveBosses-3.4.3-mc1.16.5.jar              |Progressive Bosses            |progressivebosses             |3.4.3               |DONE      |Manifest: NOSIGNATURE         mcw-doors-1.0.7-mc1.16.5.jar                      |Macaw's Doors                 |mcwdoors                      |1.0.7               |DONE      |Manifest: NOSIGNATURE         bygonenether-1.2.1-1.16.5.jar                     |Bygone Nether                 |bygonenether                  |1.2.1               |DONE      |Manifest: NOSIGNATURE         carryon-1.16.5-1.15.5.22.jar                      |Carry On                      |carryon                       |1.15.5.22           |DONE      |Manifest: NOSIGNATURE         omnis-1.16.5-1.2.3.jar                            |Omnis                         |omnis                         |1.16.5-1.0          |DONE      |Manifest: NOSIGNATURE         Tidbits-0.1.3.jar                                 |Tidbits                       |tidbits                       |0.1.2               |DONE      |Manifest: NOSIGNATURE         createcafe-1.16.5-2.4.jar                         |Create Cafe                   |createcafe                    |1.16.5-2.4          |DONE      |Manifest: NOSIGNATURE         cuneiform-1.16.3-1.2.5.jar                        |Cuneiform                     |cuneiform                     |1.16.3-1.2.5        |DONE      |Manifest: NOSIGNATURE         chipped-1.16.5-1.2.1-forge.jar                    |Chipped                       |chipped                       |1.16.5-1.2.1-forge  |DONE      |Manifest: NOSIGNATURE         createplus-1.16.4_v0.3.2.1.jar                    |Create Plus                   |createplus                    |1.16.4_v0.3.2.1     |DONE      |Manifest: NOSIGNATURE         chocolate-1.3.0-1.16.4.jar                        |Chocolate                     |chocolate                     |1.3.0-1.16.4        |DONE      |Manifest: NOSIGNATURE         mcw-bridges-2.0.5-mc1.16.5forge.jar               |Macaw's Bridges               |mcwbridges                    |2.0.5               |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.16.5-0.6.0.jar                   |Farmer's Delight              |farmersdelight                |1.16.5-0.6.0        |DONE      |Manifest: NOSIGNATURE         fd_cookbook-2.0.jar                               |Farmers Delight Cookbook      |fd_cookbook                   |2.0                 |DONE      |Manifest: NOSIGNATURE         culturaldelights-1.16.5-0.9.2.jar                 |Cultural Delights             |culturaldelights              |0.9.2               |DONE      |Manifest: NOSIGNATURE         farmersdelightintegration-1.16.5-1.0.3.jar        |Farmer's Delight Integration  |farmersdelightintegration     |1.16.5-1.0.3        |DONE      |Manifest: NOSIGNATURE         DustrialDecor-1.3.1.jar                           |'Dustrial Decor               |dustrial_decor                |1.2.8               |DONE      |Manifest: NOSIGNATURE         simpleshops-1.1.3.jar                             |Simple Shops                  |simpleshops                   |1.1.3               |DONE      |Manifest: NOSIGNATURE         projectvibrantjourneys-1.16.5-3.2.11.jar          |Project: Vibrant Journeys     |projectvibrantjourneys        |1.16.5-3.2.11       |DONE      |Manifest: NOSIGNATURE         MobZReborn-3.0.2.jar                              |MobZ                          |mobz                          |3.0.2               |DONE      |Manifest: NOSIGNATURE         Treasure2-mc1.16.5-f36.2.34-v2.4.0.jar            |Treasure2                     |treasure2                     |2.4.0               |DONE      |Manifest: NOSIGNATURE         GottschCore-mc1.16.5-f36.2.34-v1.8.0.jar          |GottschCore                   |gottschcore                   |1.8.0               |DONE      |Manifest: NOSIGNATURE         Talpm 1.0.0 1.16.5.jar                            |TheAbyss LPM Integration      |talpm                         |1.0.0               |DONE      |Manifest: NOSIGNATURE         mcw-fences-1.0.6-mc1.16.5.jar                     |Macaw's Fences and Walls      |mcwfences                     |1.0.6               |DONE      |Manifest: NOSIGNATURE         dungeons_enhanced-1.16.5-1.8.1.jar                |Dungeons Enhanced             |dungeons_enhanced             |1.8.1               |DONE      |Manifest: NOSIGNATURE         bettercompat-0.4.2-1.16.5-36.2.34.jar             |Tinkers Better Compat         |bettercompat                  |0.4.2               |DONE      |Manifest: NOSIGNATURE         Bountiful-1.16.4-3.3.1.jar                        |Bountiful                     |bountiful                     |1.16.4-3.3.1        |DONE      |Manifest: NOSIGNATURE         CNB-1.16.3_5-1.2.11.jar                           |Creatures and Beasts          |cnb                           |1.2.11              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.16.5-3.0.103.jar                 |GeckoLib                      |geckolib3                     |3.0.103             |DONE      |Manifest: NOSIGNATURE         Goblins_Dungeons_1.0.6-1.16.jar                   |Goblins & Dungeons            |goblinsanddungeons            |1.0.6               |DONE      |Manifest: NOSIGNATURE         L_Enders Cataclysm-0.40-1.16.5.jar                |Cataclysm Mod                 |cataclysm                     |1.0                 |DONE      |Manifest: NOSIGNATURE         Patchouli-1.16.4-53.3.jar                         |Patchouli                     |patchouli                     |1.16.4-53.3         |DONE      |Manifest: NOSIGNATURE         collective-1.16.5-5.15.jar                        |Collective                    |collective                    |5.15                |DONE      |Manifest: NOSIGNATURE         villagertools-1.16.5-1.0.2.jar                    |villagertools                 |villagertools                 |1.16.5-1.0.2        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         elevatorid-1.16.5-1.7.13.jar                      |Elevator Mod                  |elevatorid                    |1.16.5-1.7.13       |DONE      |Manifest: NOSIGNATURE         BetterStrongholds-1.16.4-1.2.1.jar                |YUNG's Better Strongholds     |betterstrongholds             |1.16.4-1.2.1        |DONE      |Manifest: NOSIGNATURE         EnigmaticLegacy-2.11.12.jar                       |Enigmatic Legacy              |enigmaticlegacy               |2.11.12             |DONE      |Manifest: NOSIGNATURE         travelers_index-1.16.4-1.0.2.jar                  |Traveler's Index              |travelers_index               |1.16.4-1.0.2        |DONE      |Manifest: NOSIGNATURE         starterkit_1.16.5-3.9.jar                         |Starter Kit                   |starterkit                    |3.9                 |DONE      |Manifest: NOSIGNATURE         cavebiomeapi-1.16.5-1.4.2.jar                     |CaveBiomeAPI                  |cavebiomeapi                  |1.16.5-1.4.2        |DONE      |Manifest: NOSIGNATURE         architectury-1.32.66.jar                          |Architectury                  |architectury                  |1.32.66             |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-1605.3.4-build.90.jar           |FTB Library                   |ftblibrary                    |1605.3.4-build.90   |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-1605.2.3-build.40.jar             |FTB Teams                     |ftbteams                      |1605.2.3-build.40   |DONE      |Manifest: NOSIGNATURE         ftb-ranks-forge-1605.1.6-build.33.jar             |FTB Ranks                     |ftbranks                      |1605.1.6-build.33   |DONE      |Manifest: NOSIGNATURE         curiouselytra-forge-1.16.5-4.0.2.4.jar            |Curious Elytra                |curiouselytra                 |1.16.5-4.0.2.4      |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.16.5-0.5.0.jar                  |AI-Improvements               |aiimprovements                |0.4.0               |DONE      |Manifest: NOSIGNATURE         meetle-8.6.jar                                    |Marquot                       |marquot                       |1.0.0               |DONE      |Manifest: NOSIGNATURE         The_Undergarden-1.16.5-0.5.5.jar                  |The Undergarden               |undergarden                   |0.5.5               |DONE      |Manifest: NOSIGNATURE         enchantwithmob-1.16.5-1.5.2.jar                   |Enchant With Mob              |enchantwithmob                |1.16.5-1.5.2        |DONE      |Manifest: NOSIGNATURE         depth-1.0.2-1.16.5.jar                            |Depth                         |depth                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         smallships-1.16.5-1.10.1.jar                      |Small Ships Mod               |smallships                    |1.10.1              |DONE      |Manifest: NOSIGNATURE         voidtotem-1.16.5-1.4.0.jar                        |Void Totem                    |voidtotem                     |1.16.5-1.4.0        |DONE      |Manifest: NOSIGNATURE         TradingPost-v1.0.2-1.16.5.jar                     |Trading Post                  |tradingpost                   |1.0.2               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         awesomedungeonend-forge-1.16.5-3.1.1.jar          |Awesome dungeon the end       |awesomedungeonend             |3.1.1               |DONE      |Manifest: NOSIGNATURE         Shrines-1.16.5-2.3.0.jar                          |Shrines                       |shrines                       |1.16.5-2.3.0        |DONE      |Manifest: NOSIGNATURE         Nourished Nether Release V15.1 Backport.jar       |Nourished Nether              |nourished_nether              |1.1.5               |DONE      |Manifest: NOSIGNATURE         item-filters-forge-1605.2.5-build.9.jar           |Item Filters                  |itemfilters                   |1605.2.5-build.9    |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-1605.3.6-build.98.jar            |FTB Quests                    |ftbquests                     |1605.3.6-build.98   |DONE      |Manifest: NOSIGNATURE         EasyMagic-v1.0.4-1.16.5.jar                       |Easy Magic                    |easymagic                     |1.0.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         NourishedEndV9-1.16.5Backport.jar                 |Nourished End                 |nourished_end                 |1.0.8               |DONE      |Manifest: NOSIGNATURE         Druidcraft-1.16.5-0.4.54.jar                      |Druidcraft                    |druidcraft                    |0.4.52              |DONE      |Manifest: NOSIGNATURE         the-conjurer-1.16.4-1.0.13.jar                    |The Conjurer                  |conjurer_illager              |1.0.13              |DONE      |Manifest: NOSIGNATURE         abnormals_core-1.16.5-3.3.1.jar                   |Abnormals Core                |abnormals_core                |3.3.1               |DONE      |Manifest: NOSIGNATURE         environmental-1.16.5-1.1.1.jar                    |Environmental                 |environmental                 |1.1.1               |DONE      |Manifest: NOSIGNATURE         bamboo_blocks-1.16.5-3.0.1.jar                    |Bamboo Blocks                 |bamboo_blocks                 |3.0.1               |DONE      |Manifest: NOSIGNATURE         copperpot-1.16.5-1.2.0.jar                        |Copper Pot                    |copperpot                     |1.16.5-1.2.0        |DONE      |Manifest: NOSIGNATURE         upgrade_aquatic-1.16.5-3.1.2.jar                  |Upgrade Aquatic               |upgrade_aquatic               |3.1.2               |DONE      |Manifest: NOSIGNATURE         Better-Badlands-1.16.5-2.0.3.jar                  |Better Badlands               |better_badlands               |1.16.5-2.0.3        |DONE      |Manifest: NOSIGNATURE         irregularchef-1.16.5-1.0.1.jar                    |The Irregular Chef            |irregularchef                 |1.16.5-1.0.1        |DONE      |Manifest: NOSIGNATURE         endergetic-1.16.5-3.0.2.jar                       |The Endergetic Expansion      |endergetic                    |3.0.2               |DONE      |Manifest: NOSIGNATURE         neapolitan-1.16.5-2.2.1.jar                       |Neapolitan                    |neapolitan                    |2.2.1               |DONE      |Manifest: NOSIGNATURE         personality-1.16.5-1.0.3.jar                      |Personality                   |personality                   |1.0.3               |DONE      |Manifest: NOSIGNATURE         savageandravage-1.16.5-3.2.0.jar                  |Savage & Ravage               |savageandravage               |3.2.0               |DONE      |Manifest: NOSIGNATURE         autumnity-1.16.5-2.1.2.jar                        |Autumnity                     |autumnity                     |2.1.2               |DONE      |Manifest: NOSIGNATURE         nethers_delight-2.1.jar                           |Nethers Delight               |nethers_delight               |2.1                 |DONE      |Manifest: NOSIGNATURE         buzzier_bees-1.16.5-3.0.3.jar                     |Buzzier Bees                  |buzzier_bees                  |3.0.3               |DONE      |Manifest: NOSIGNATURE         Enhanced-Mushrooms-1.16.5-3.0.9.jar               |Enhanced Mushrooms            |enhanced_mushrooms            |1.16.5-3.0.9        |DONE      |Manifest: NOSIGNATURE         extraboats-1.16.5-2.1.1.jar                       |Extra Boats                   |extraboats                    |2.1.1               |DONE      |Manifest: NOSIGNATURE         create-mc1.16.5_v0.3.2g.jar                       |Create                        |create                        |v0.3.2g             |DONE      |Manifest: NOSIGNATURE         morecreatestuffs-mc1.16-1.4.1b.jar                |More Create Stuffs            |morecreatestuffs              |mc1.16-1.4.1b       |DONE      |Manifest: NOSIGNATURE         Waystones_1.16.5-7.6.4.jar                        |Waystones                     |waystones                     |7.6.4               |DONE      |Manifest: NOSIGNATURE         MerchantMarkers-1.16.5-1.2.2.jar                  |Merchant Markers              |merchantmarkers               |1.2.2               |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_22.16.2_Forge_1.16.5.jar           |Xaero's Minimap               |xaerominimap                  |22.16.2             |DONE      |Manifest: NOSIGNATURE         mcw-paintings-1.0.4-mc1.16.5.jar                  |Macaw's Paintings             |mcwpaintings                  |1.0.4               |DONE      |Manifest: NOSIGNATURE         Clumps-6.0.0.28.jar                               |Clumps                        |clumps                        |6.0.0.28            |DONE      |Manifest: NOSIGNATURE         mgui-1.16.5-3.3.0.jar                             |mgui                          |mgui                          |3.3.0               |DONE      |Manifest: NOSIGNATURE         tetrapak-1.16.5-0.3.4.jar                         |Tetra Pak                     |tetrapak                      |1.16.5-0.3.4        |DONE      |Manifest: NOSIGNATURE         village-employment-1.16.5-1.4.1.jar               |Village Employment            |village_employment            |1.4.1               |DONE      |Manifest: NOSIGNATURE         RoadRunner-mc1.16.5-1.4.1.jar                     |Meep Meep! (Road Runner)      |roadrunner                    |1.4.1               |DONE      |Manifest: NOSIGNATURE         comforts-forge-1.16.5-4.0.1.5.jar                 |Comforts                      |comforts                      |1.16.5-4.0.1.5      |DONE      |Manifest: NOSIGNATURE         campful-1.16.5-3.1.0.jar                          |Campful                       |campful                       |2.0                 |DONE      |Manifest: NOSIGNATURE         SimpleStorageNetwork-1.16.5-1.5.3.jar             |Simple Storage Network        |storagenetwork                |1.16.5-1.5.3        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         ItemBorders-1.16.5-1.1.6.jar                      |Item Borders                  |itemborders                   |1.1.6               |DONE      |Manifest: NOSIGNATURE         DungeonCrawl-1.16.5-2.3.12.jar                    |Dungeon Crawl                 |dungeoncrawl                  |2.3.12              |DONE      |Manifest: NOSIGNATURE         BadMobs-1.16.5-9.1.8.jar                          |BadMobs                       |badmobs                       |9.1.8               |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Obscuria's Tooltips 1.0.0.jar                     |Obscuria's Tooltips           |ob_tooltips                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         create-confectionery1.16.5_v1.0.2.jar             |Create Confectionery          |create_confectionery          |1.0.2               |DONE      |Manifest: NOSIGNATURE         deepdark_4.2.jar                                  |Dead Guy's Untitled Deep Dark |dead_guys_untitled_deep_dark_ |Frist Version!      |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.16.5-1.1.2-forge.jar           |Explorer's Compass            |explorerscompass              |1.16.5-1.1.2-forge  |DONE      |Manifest: NOSIGNATURE         netherdepthsupgrade-1.1.1-1.16.5.jar              |Nether Depths Upgrade         |netherdepthsupgrade           |1.1.1-1.16.5        |DONE      |Manifest: NOSIGNATURE         farsight-1.7.jar                                  |Farsight mod                  |farsight_view                 |1.7                 |DONE      |Manifest: NOSIGNATURE         miningmaster-1.16.5-3.0.6.jar                     |Mining Master                 |miningmaster                  |3.0.6               |DONE      |Manifest: NOSIGNATURE         AkashicTome-1.4-16.jar                            |Akashic Tome                  |akashictome                   |1.4-16              |DONE      |Manifest: NOSIGNATURE         ftb-chunks-forge-1605.3.2-build.115.jar           |FTB Chunks                    |ftbchunks                     |1605.3.2-build.115  |DONE      |Manifest: NOSIGNATURE         IntoTheVoid-1.16.5_V1.0.4.jar                     |Into The Void                 |intothevoid                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         scuba-gear-1.16.5-1.0.3.jar                       |Scuba Gear                    |scuba_gear                    |1.0.3               |DONE      |Manifest: NOSIGNATURE         twist-1.4.1.jar                                   |Twist                         |twist                         |4.0.0               |DONE      |Manifest: NOSIGNATURE         selene-1.16.5-1.9.0.jar                           |Selene                        |selene                        |1.16.5-1.0          |DONE      |Manifest: NOSIGNATURE         TConstruct-1.16.5-3.3.4.335.jar                   |Tinkers' Construct            |tconstruct                    |3.3.4.335           |DONE      |Manifest: NOSIGNATURE         JER-Integration-1.1.1.jar                         |JER Integration               |jerintegration                |1.1.1               |DONE      |Manifest: NOSIGNATURE         ToolBelt-1.16.5-1.16.2.jar                        |Tool Belt                     |toolbelt                      |1.16.2              |DONE      |Manifest: NOSIGNATURE         Alex's Delight 1.1.3 - Forge 1.16.5.jar           |Alex's Delight                |amfd                          |1.1.3               |DONE      |Manifest: NOSIGNATURE         silent-lib-1.16.3-4.9.6.jar                       |Silent Lib                    |silentlib                     |4.9.6               |DONE      |Manifest: NOSIGNATURE         Jade-1.16.4-2.8.3.jar                             |Jade                          |jade                          |2.8.3               |DONE      |Manifest: NOSIGNATURE         CreativeCore_v2.2.1_mc1.16.5.jar                  |CreativeCore                  |creativecore                  |2.0.0               |DONE      |Manifest: NOSIGNATURE         Undergarden-Tetra Patch-1.2.1.jar                 |Undergarden/Tetra Patch       |undergardenpatch              |1.2.1               |DONE      |Manifest: NOSIGNATURE         towers_of_the_wild-1.16.3-2.1.0.1.jar             |Towers Of The Wild            |towers_of_the_wild            |1.16.3-2.1.0        |DONE      |Manifest: NOSIGNATURE         atmospheric-1.16.5-3.1.1.jar                      |Atmospheric                   |atmospheric                   |3.1.1               |DONE      |Manifest: NOSIGNATURE         plushies-1.2-1.16.5-forge.jar                     |Plushie Mod                   |plushies                      |1.2                 |DONE      |Manifest: NOSIGNATURE         Iceberg-1.16.5-1.0.45.jar                         |Iceberg                       |iceberg                       |1.0.45              |DONE      |Manifest: NOSIGNATURE         Quark-r2.4-322.jar                                |Quark                         |quark                         |r2.4-322            |DONE      |Manifest: NOSIGNATURE         terraincognita-1.16.3-1.7.3.jar                   |Terra Incognita               |terraincognita                |1.16.3-1.7.3        |DONE      |Manifest: NOSIGNATURE         LegendaryTooltips-1.16.5-1.3.1.jar                |Legendary Tooltips            |legendarytooltips             |1.3.1               |DONE      |Manifest: NOSIGNATURE         brutalbosses-4.7.jar                              |brutalbosses mod              |brutalbosses                  |4.7                 |DONE      |Manifest: NOSIGNATURE         malum-1.16.5-0.3.0.jar                            |Malum                         |malum                         |1.16.5-0.3.0        |DONE      |Manifest: NOSIGNATURE         kryptonreforged-mc1.16.5_v1.0.0.jar               |Krypton Reforged              |kryptonreforged               |mc1.16.5_v1.0.0     |DONE      |Manifest: NOSIGNATURE         abnormals_delight-1.16.5-1.2.1.jar                |Abnormals Delight             |abnormals_delight             |1.2.1               |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.16.3-8.5.2.jar                   |Storage Drawers               |storagedrawers                |8.5.2               |DONE      |Manifest: NOSIGNATURE         morestoragedrawers-1.16.5-1.1.2.jar               |More Storage Drawers          |morestoragedrawers            |1.16.5-1.1.2        |DONE      |Manifest: NOSIGNATURE         betterendforge-1.16.5-2.5.jar                     |BetterEnd Forge               |betterendforge                |1.16.5-2.5          |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.16.5-13.1.0.477-universal.jar     |Biomes O' Plenty              |biomesoplenty                 |1.16.5-13.1.0.477   |DONE      |Manifest: NOSIGNATURE         byg-1.3.6.jar                                     |Oh The Biomes You'll Go       |byg                           |1.3.4               |DONE      |Manifest: NOSIGNATURE         Aquaculture-1.16.5-2.1.23.jar                     |Aquaculture 2                 |aquaculture                   |1.16.5-2.1.23       |DONE      |Manifest: NOSIGNATURE         additionalbarsbop-2.0.3.jar                       |Additional Bars (Biomes o' Ple|additionalbarsbop             |2.0.3               |DONE      |Manifest: NOSIGNATURE         eidolon-0.2.7.jar                                 |Eidolon                       |eidolon                       |0.2.7               |DONE      |Manifest: NOSIGNATURE         twilightforest-1.16.5-4.0.870-universal.jar       |The Twilight Forest           |twilightforest                |NONE                |DONE      |Manifest: NOSIGNATURE         Compat-O-Plenty-1.16.5-1.0.7.jar                  |Compat O' Plenty              |compatoplenty                 |1.16.5-1.0.7        |DONE      |Manifest: NOSIGNATURE         OuterEnd-0.2.14.jar                               |The Outer End                 |outer_end                     |0.2.9               |DONE      |Manifest: NOSIGNATURE         ToughAsNails-1.16.5-4.1.0.9-universal.jar         |Tough As Nails                |toughasnails                  |1.16.5-4.0.1.8      |DONE      |Manifest: NOSIGNATURE         muchmoremodcompat-na.jar                          |Much More Mod Compat          |muchmoremodcompat             |NONE                |DONE      |Manifest: NOSIGNATURE         decorative_blocks-1.16.4-1.7.2.jar                |Decorative Blocks             |decorative_blocks             |1.7.2               |DONE      |Manifest: NOSIGNATURE         decorative_blocks_abnormals-1.2.jar               |Decorative Blocks Abnormals   |decorative_blocks_abnormals   |1.2                 |DONE      |Manifest: NOSIGNATURE         combustivefishing-forge-1.16.3-4.0.0.1.jar        |Combustive Fishing            |combustivefishing             |1.16.3-4.0.0.1      |DONE      |Manifest: NOSIGNATURE         upgradedcore-1.16.5-1.1.0.3-release.jar           |Upgraded Core                 |upgradedcore                  |1.16.5-1.1.0.3-relea|DONE      |Manifest: NOSIGNATURE         HunterIllager-1.16.5-1.4.0.jar                    |Hunter Illager                |hunterillager                 |1.16.5-1.4.0        |DONE      |Manifest: NOSIGNATURE         illagersweararmor-1.0.5.jar                       |Illagers Wear Armor           |illagersweararmor             |1.0.5               |DONE      |Manifest: NOSIGNATURE         ferritecore-2.1.1-forge.jar                       |Ferrite Core                  |ferritecore                   |2.1.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         enhancedcelestials-2.0.9-1.16.5.jar               |Enhanced Celestials           |enhancedcelestials            |2.0.9-1.16.5        |DONE      |Manifest: NOSIGNATURE         SilentGems-1.16.3-3.7.16.jar                      |Silent's Gems 3               |silentgems                    |3.7.16              |DONE      |Manifest: NOSIGNATURE         illagers_plus-1.16.5v1.0.2.jar                    |Illagers+                     |illagers_plus                 |1.16.5v1.0.2        |DONE      |Manifest: NOSIGNATURE         improvedmobs-1.16.5-1.10.13.jar                   |Improved Mobs Mod             |improvedmobs                  |1.16.5-1.10.13      |DONE      |Manifest: NOSIGNATURE         valhelsia_core-16.0.15.jar                        |Valhelsia Core                |valhelsia_core                |16.0.15             |DONE      |Manifest: NOSIGNATURE         valhelsia_structures-1.16.5-0.1.6.jar             |Valhelsia Structures          |valhelsia_structures          |1.16.5-0.1.6        |DONE      |Manifest: NOSIGNATURE         forbidden_arcanus-16.2.3.jar                      |Forbidden & Arcanus           |forbidden_arcanus             |16.2.3              |DONE      |Manifest: NOSIGNATURE         NatureExpansion1.5.jar                            |Nature Expansion              |nature_expansion              |1.3.0               |DONE      |Manifest: NOSIGNATURE         createaddition-1.16.5-20220129a.jar               |Create Crafts & Additions     |createaddition                |1.16.5-20220129a    |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: c5fe311f-37f3-43e9-9904-fc38ae725018     RoadRunner != Lithium: This instance was launched using RoadRunner, which is an *unofficial* Lithium fork! Please **do not** report bugs to them!     Kiwi Modules:               Patchouli open book context: n/a     Player Count: 1 / 8; [ServerPlayerEntity['Vy_Victory'/2269, l='ServerLevel[New World test]', x=-232.37, y=67.00, z=-57.79]]     Data Packs: vanilla, mod:dynamiclightsreforged, mod:create_stuff_additions, mod:betterdungeons, mod:ftbessentials, mod:infernalexp (incompatible), mod:nethers_exoticism, mod:mcwwindows, mod:stalwart_dungeons, mod:strawgolem, mod:bettercaves (incompatible), mod:farmersdelightintegrations, mod:yungsapi, mod:upgradednetherite_items, mod:lootbeams, mod:guardvillagers, mod:randompatches, mod:harderspawners (incompatible), mod:apotheosis (incompatible), mod:bygvanillabiomes, mod:whatareyouvotingfor, mod:jeresources, mod:tdelight, mod:paraglider, mod:revampedwolf, mod:supplementaries, mod:upgradednetherite, mod:structure_gel, mod:corpse, mod:tinyskeletons, mod:tenshilib (incompatible), mod:cleancut (incompatible), mod:torchmaster (incompatible), mod:repurposed_structures, mod:morevillagers, mod:bcc (incompatible), mod:morepaths (incompatible), mod:ob_aquamirae, mod:dungeons_plus, mod:unusualend, mod:mcwtrpdoors, mod:silentgear, mod:supermartijn642corelib, mod:betterdefaultbiomes, mod:yungsbridges, mod:cavesandcliffs, mod:darkerdepths, mod:highlighter, mod:spark, mod:curios, mod:quality_equipment, mod:extendedmushrooms, mod:levelhearts (incompatible), mod:advancednetherite, mod:specialai, mod:yungsextras, mod:infinite_dungeons (incompatible), mod:bettervillage, mod:obfuscate, mod:theabyss, mod:majruszs_difficulty, mod:mcwroofs, mod:pmmo (incompatible), mod:mutantmore, mod:cfm (incompatible), mod:mcwfurnitures, mod:itemphysic, mod:cloth-config (incompatible), mod:enhancedai, mod:bettershields, mod:babel, mod:jepb, mod:bettermineshafts, mod:bettermodsbutton, mod:darkpaintings, mod:treasurebags (incompatible), mod:mcwlights, mod:quarkoddities (incompatible), mod:kiwi, mod:mowziesmobs, mod:mining_helmet (incompatible), mod:configmenusforge, mod:thecomfortzone, mod:jei, mod:jeiprofessions (incompatible), mod:visualworkbench, mod:graveyard, mod:enderlinginvaders, mod:comfortable_nether, mod:attributefix, mod:libraryferret, mod:goblintraders, mod:caelus, mod:paxi, mod:boss_tools, mod:harderbranchmining, mod:awesomedungeon, mod:organics, mod:naturescompass (incompatible), mod:additionalbars (incompatible), mod:sereneseasons, mod:hardcorequesting (incompatible), mod:stoneholm, mod:champions (incompatible), mod:curioofundying, mod:snowundertrees, mod:sulfuric, mod:outvoted, mod:additional_lights, mod:jeitweaker, mod:crafttweaker, mod:crumbs, mod:forge, mod:atum, mod:subwild, mod:idas, mod:dungeons_arise, mod:awesomedungeonocean, mod:sons_of_sins, mod:mousetweaks, mod:awesomedungeonnether, mod:totw_additions, mod:storage_overhaul, mod:cavesandcliffsbackportadditions, mod:paintings (incompatible), mod:majrusz_library, mod:dimdungeons, mod:whisperwoods, mod:flywheel, mod:mantle (incompatible), mod:ftbbackups (incompatible), mod:polymorph, mod:autoreglib (incompatible), mod:earthmobsmod (incompatible), mod:norecipeadvancements, mod:library_of_exile (incompatible), mod:appleskin, mod:lootr (incompatible), mod:upgradednetherite_ultimate, mod:puzzleslib, mod:slimy_stuff, mod:ob_core, mod:harderfarther, mod:betterlands, mod:cosmeticarmorreworked (incompatible), mod:moreplates, mod:xpbook, mod:tetra, mod:tetranomicon, mod:treechop, mod:litewolfcore, mod:dungeonsmod (incompatible), mod:blue_skies (incompatible), mod:piglin_expansion, mod:roughmobsrevamped, mod:netherportalfix (incompatible), mod:wyrmroost (incompatible), mod:additionalbanners, mod:healthoverlay, mod:architects_palette (incompatible), mod:morecfm, mod:doggytalents (incompatible), mod:kingvillager, mod:kleeslabs (incompatible), mod:insanelib, mod:villagernames, mod:xaeroworldmap, mod:controlling, mod:prism (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs, mod:iceandfire, mod:lootintegrations, mod:moreminecarts, mod:mutantbeasts (incompatible), mod:bookshelf, mod:sophisticatedbackpacks, mod:progressivebosses, mod:mcwdoors, mod:bygonenether (incompatible), mod:carryon, mod:omnis, mod:tidbits, mod:createcafe, mod:cuneiform, mod:chipped, mod:createplus, mod:chocolate, mod:mcwbridges, mod:farmersdelight, mod:fd_cookbook, mod:culturaldelights, mod:farmersdelightintegration, mod:dustrial_decor (incompatible), mod:simpleshops, mod:projectvibrantjourneys, mod:mobz (incompatible), mod:treasure2, mod:gottschcore (incompatible), mod:talpm, mod:mcwfences, mod:dungeons_enhanced, mod:bettercompat, mod:bountiful (incompatible), mod:cnb, mod:geckolib3 (incompatible), mod:goblinsanddungeons, mod:cataclysm (incompatible), mod:patchouli (incompatible), mod:collective, mod:villagertools, mod:elevatorid, mod:betterstrongholds, mod:enigmaticlegacy, mod:travelers_index (incompatible), mod:starterkit, mod:cavebiomeapi, mod:architectury, mod:ftblibrary, mod:ftbteams, mod:ftbranks, mod:curiouselytra, mod:aiimprovements, mod:marquot, mod:undergarden, mod:enchantwithmob, mod:depth, mod:smallships, mod:voidtotem, mod:tradingpost, mod:awesomedungeonend, mod:shrines, mod:nourished_nether, mod:itemfilters, mod:ftbquests, mod:easymagic, mod:nourished_end, mod:druidcraft (incompatible), mod:conjurer_illager (incompatible), mod:abnormals_core, mod:environmental, mod:bamboo_blocks, mod:copperpot, mod:upgrade_aquatic, mod:better_badlands, mod:irregularchef, mod:endergetic, mod:neapolitan, mod:personality, mod:savageandravage, mod:autumnity, mod:nethers_delight, mod:buzzier_bees, mod:enhanced_mushrooms, mod:extraboats, mod:create, mod:morecreatestuffs, mod:waystones (incompatible), mod:merchantmarkers, mod:xaerominimap, mod:mcwpaintings, mod:clumps, mod:mgui (incompatible), mod:tetrapak, mod:village_employment, mod:roadrunner (incompatible), mod:comforts, mod:campful, mod:storagenetwork, mod:itemborders, mod:dungeoncrawl, mod:badmobs (incompatible), mod:ob_tooltips, mod:create_confectionery, mod:dead_guys_untitled_deep_dark_, mod:explorerscompass, mod:netherdepthsupgrade, mod:farsight_view, mod:miningmaster, mod:akashictome, mod:ftbchunks, mod:intothevoid, mod:scuba_gear (incompatible), mod:twist, mod:selene, mod:tconstruct, mod:jerintegration, mod:toolbelt (incompatible), mod:amfd, mod:silentlib (incompatible), mod:jade, mod:creativecore, mod:undergardenpatch, mod:towers_of_the_wild, mod:atmospheric, mod:plushies, mod:iceberg, mod:quark (incompatible), mod:terraincognita, mod:legendarytooltips, mod:brutalbosses, mod:malum (incompatible), mod:kryptonreforged (incompatible), mod:abnormals_delight, mod:storagedrawers (incompatible), mod:morestoragedrawers, mod:betterendforge, mod:biomesoplenty, mod:byg, mod:aquaculture (incompatible), mod:additionalbarsbop (incompatible), mod:eidolon, mod:twilightforest, mod:compatoplenty, mod:outer_end, mod:toughasnails, mod:muchmoremodcompat, mod:decorative_blocks, mod:decorative_blocks_abnormals, mod:combustivefishing (incompatible), mod:upgradedcore, mod:hunterillager, mod:illagersweararmor (incompatible), mod:ferritecore (incompatible), mod:enhancedcelestials, mod:silentgems, mod:illagers_plus, mod:improvedmobs (incompatible), mod:valhelsia_core, mod:valhelsia_structures, mod:forbidden_arcanus (incompatible), mod:nature_expansion, mod:createaddition, DruidLeavesFix.zip, Repurposed_Structures-Better_Dungeons_Forge.zip, Repurposed_Structures-Better_Strongholds_Forge.zip, Repurposed_Structures-Buzzier_Bees.zip, Repurposed_Structures-Caves_And_Cliffs_Backport-v2.zip, Repurposed_Structures-Environmental.zip, Repurposed_Structures-Farmers_Delight_Forge.zip, Repurposed_Structures-Ice_and_Fire_v2.zip, Repurposed_Structures-More_Villagers_Forge_v2.zip, Repurposed_Structures-Savage_And_Ravage.zip, Repurposed_Structures-Tidbits.zip, file/Included Structures, ichphilipp-s-endcity-v1-1-1-16-2-forge.zip (incompatible), the-forbidden-castle-v1-1.zip     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'
    • So I'm trying to run a Dawncraft server on Apex MC Hosting but it keeps crashing on startup. I don't really know how to fix it   Here is the crash log https://pastebin.com/x0TwZ7bK If you need a latest.log file, I am willing to dropbox it!
  • Topics

×
×
  • Create New...

Important Information

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