Jump to content

[1.9] My Custom axe is giving me an Array out of Bounds exception [SOLVED]


Recommended Posts

Posted

For some reason I'm getting an Array out of Bounds exception when compile I'm compiling my mod. I have no clue why its doing this. I'm also using forge version "1.9-12.16.0.1802-1.9" which the latest version of Java.

 

Here my custom Axe class...

 

package com.derf.ei.items;

import net.minecraft.item.ItemAxe;

public class EIItemAxe extends ItemAxe {

protected EIItemAxe(String name, ToolMaterial material) {
	super(material);
	// TODO Auto-generated constructor stub
	this.setUnlocalizedName(name);
}

}

 

Here is the stack trace.

 

Stacktrace:
at net.minecraft.item.ItemAxe.<init>(SourceFile:32)
at com.derf.ei.items.EIItemAxe.<init>(EIItemAxe.java:
at com.derf.ei.items.EIItems.create(EIItems.java:134)
at com.derf.ei.EICommonProxy.preInit(EICommonProxy.java:19)
at com.derf.ei.EIClientProxy.preInit(EIClientProxy.java:15)
at com.derf.ei.EILoader.preInit(EILoader.java:25)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:560)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
at com.google.common.eventbus.EventBus.post(EventBus.java:275)
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:221)
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
at com.google.common.eventbus.EventBus.post(EventBus.java:275)
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:128)
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:556)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:241)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:434)

Posted

It seems as if you've passed a tool material to super that super doesn't understand. You'll probably need to work around the limited array that super uses.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Posted

Well the funny thing is the only tool that is giving me the error is the Axe. The Sword, Pickaxe, Spade (aka Shovel), and Hoe are not giving me an "Array out of Bound" exception. Only the Axe...  :-\

 

Also here's the portion of code that is relevant to my problem from the EIItems class.

 

public final class EIItems {
        // ...
// Tier 1 Tools (Voidium Ingot Tools and Armor)
// Tools
public static Item voidiumSword;
public static Item voidiumPickaxe;
public static Item voidiumSpade;
public static Item voidiumAxe;
public static Item voidiumHoe;
        // ...
public static void create() {
	VOIDIUM = EnumHelper.addToolMaterial("VOIDIUM", 2, 750, 6.0F, 2.0F, 0);
                // ...
	// Tier 1 Tools VOIDIUM
	// Tools
	voidiumSword = new EIItemSword("voidium_sword", VOIDIUM);
	voidiumPickaxe = new EIItemPickaxe("voidium_pickaxe", VOIDIUM);
	voidiumSpade = new EIItemSpade("voidium_shovel", VOIDIUM);
	voidiumAxe = new EIItemAxe("voidium_axe", VOIDIUM);
	voidiumHoe = new EIItemHoe("voidium_hoe", VOIDIUM);
	// ...
}
        // ...
}

Posted

I dont think you can use ItemAxe for your custom axe anymore, since the constructor is kinda hardcoded.. I made this class for workaround

 

 

public class CustomAxe extends Item{

private final ToolMaterial material;

public CustomAxe(ToolMaterial material) {
	setCreativeTab(MiningOverhaul.miningTab);
	this.material=material;
}

@Override
public float getStrVsBlock(ItemStack stack, IBlockState state)
    {
        Material material = state.getMaterial();
        return material != Material.wood && material != Material.plants && material != Material.vine ? super.getStrVsBlock(stack, state) : this.material.getEfficiencyOnProperMaterial();
    }

}

(note that this class isnt finished , e.g. damage is not implemented yet)

Posted

i having the same issue

 

but i just leave it behind

forge 1.9 has only like a week of release and still has a lot of little isues

may the fixed in the early time

 

also custom shields dont works, dont crash or throw error of any kind but still the custom shield is not apering in the cretive inventory

Posted

i having the same issue

 

but i just leave it behind

forge 1.9 has only like a week of release and still has a lot of little isues

may the fixed in the early time

 

also custom shields dont works, dont crash or throw error of any kind but still the custom shield is not apering in the cretive inventory

 

Yeah that what I'm thing too. Due to the fact that all of the other tools are working I think its probably a bug on their end and plus forge for mc 1.9 just came too. Also thank for warning me about shields too. To me it sound like when your using using setCreativeTabs the shield class I guess ItemShield overrides the creative tabs logic or there not setting something on their end. I'm probably going to skip the axe for now and work on the rest of the port. :)

Posted

I dont think you can use ItemAxe for your custom axe anymore, since the constructor is kinda hardcoded.. I made this class for workaround

 

 

public class CustomAxe extends Item{

private final ToolMaterial material;

public CustomAxe(ToolMaterial material) {
	setCreativeTab(MiningOverhaul.miningTab);
	this.material=material;
}

@Override
public float getStrVsBlock(ItemStack stack, IBlockState state)
    {
        Material material = state.getMaterial();
        return material != Material.wood && material != Material.plants && material != Material.vine ? super.getStrVsBlock(stack, state) : this.material.getEfficiencyOnProperMaterial();
    }

}

(note that this class isnt finished , e.g. damage is not implemented yet)

 

Thats cool :). Thanks for the post. Hmm, kind of strange on their part to completely cut the ItemAxe. Weird. Also thanks for the code. I'll fix it up with damage and what not and repost it. :)

 

Posted

Here's my implementation of the ItemAxe class. I tried my best to be as general as possible so it can work in any project. I hope the ItemAxe class for 1.9 gets fix pretty soon :).

 

ItemAxeCustom:

import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemTool;

/**
* This is an implementation of the ItemAxe. This class was created
* due to a bug in ItemAxe that results in an "Array out of Bound"
* exception in the constructor. 
* 
* Note: You don't need permission from me to use this code. Just use it
* if your having the same problem I'm having. 
* @author derf6060
*/
public class ItemAxeCustom extends ItemTool {
// A holder object for the tool material
private ToolMaterial material = null;
// This is a list of 
private static Set<Block> blocks = null;

/**
 * This initializes the ItemAxeCustom object.
 * @param ToolMaterial material
 */
public ItemAxeCustom(ToolMaterial material) {
	super(material, getEffectedBlocks());
	this.material = material;
}

/**
 * This create a list of vanilla blocks that the custom
 * axe can be used on.
 * @return Set<Block>
 */
private static Set<Block> getEffectedBlocks() {
	// TODO Auto-generated method stub

	if(blocks == null) {
		blocks = new HashSet<Block>();
		// Arcacia
		blocks.add(Blocks.acacia_door);
		blocks.add(Blocks.acacia_fence);
		blocks.add(Blocks.acacia_fence_gate);
		blocks.add(Blocks.acacia_stairs);
		// Birch
		blocks.add(Blocks.birch_door);
		blocks.add(Blocks.birch_fence);
		blocks.add(Blocks.birch_fence_gate);
		blocks.add(Blocks.birch_stairs);
		// Dark Oak
		blocks.add(Blocks.dark_oak_door);
		blocks.add(Blocks.dark_oak_fence);
		blocks.add(Blocks.dark_oak_fence_gate);
		blocks.add(Blocks.dark_oak_stairs);
		// Jungle
		blocks.add(Blocks.jungle_door);
		blocks.add(Blocks.jungle_fence);
		blocks.add(Blocks.jungle_fence_gate);
		blocks.add(Blocks.jungle_stairs);
		// Oak 
		blocks.add(Blocks.oak_door);
		blocks.add(Blocks.oak_fence);
		blocks.add(Blocks.oak_fence_gate);
		blocks.add(Blocks.oak_stairs);
		// Spruce
		blocks.add(Blocks.spruce_door);
		blocks.add(Blocks.spruce_fence);
		blocks.add(Blocks.spruce_fence_gate);
		blocks.add(Blocks.spruce_stairs);
		// Logs
		blocks.add(Blocks.log);
		blocks.add(Blocks.log2);
		// Leaves
		blocks.add(Blocks.leaves);
		blocks.add(Blocks.leaves2);
		// Planks
		blocks.add(Blocks.planks);
		// Crafting Table
		blocks.add(Blocks.crafting_table);
		// Pumkin
		blocks.add(Blocks.pumpkin);
		// Lit Pumkin
		blocks.add(Blocks.lit_pumpkin);
		// Vines
		blocks.add(Blocks.vine);
		// Melon
		blocks.add(Blocks.melon_block);
	}
	return blocks;
}

/**
 * This check if the block can be mined by the custom axe
 * @param ItemStack stack
 * @param IBlockState state
 * @return
 */
private boolean checkStrVsBlock(ItemStack stack, IBlockState state) {

	boolean b = false;

	// Check Block List that the axe can mine...
	Iterator<Block> it = blocks.iterator();

	while(it.hasNext()) {
		Block block = it.next();

		if(block == state.getBlock()) {
			b = true;
			break;
		}
	}


	// Check Materials
	Material material = state.getMaterial();

	// Added in harvest tool and harvest level
	return b || 
		   material == Material.wood || 
		   material == Material.plants || 
		   material == Material.vine || 
		   (((state.getBlock().getHarvestTool(state) != null && state.getBlock().getHarvestTool(state).equals("axe"))? true : false) && state.getBlock().getHarvestLevel(state) <= this.material.getHarvestLevel());
}


@Override
public float getStrVsBlock(ItemStack stack, IBlockState state) {
	// TODO Auto-generated method stub
	return (!checkStrVsBlock(stack, state))? super.getStrVsBlock(stack, state) : this.material.getEfficiencyOnProperMaterial();
}
}

 

There is a small issue with this class because it makes axes really fast lol.

 

Edit:

Small little update to make sure that it mines blocks that is assigned to the "axe" class and make sure the block is at the right level to be mined.

 

Removed test code, and fixed some spelling.

Posted

I updated to forge 1804 for the 1.9 line and the ItemAxe class is still giving me "Array out of Bounds" exception when doing my port of my mod. After creating the temporary ItemAxeCustom class I probably figured out why its doing this error. In the ItemTool class, it needs both a ToolMaterial and a Set<Block> class to be passed to its constructor. This means that the ItemAxe constructor is Iterating through that Set<Block> class for some reason and going over the allocated space on it which results in this error. This is what I'm speculating.

Posted

Umm seriously you guys need to stop guessing and learn how to do your own debugging.

The issue is that ItemAxe has two arrays for damange and speed that are indexed by the tool material.

Why they have this instead of using the normal values, i don't know.

But simple solution DONT extend ItemAxe, instead extend ItemTool and set your values accordingly.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Umm seriously you guys need to stop guessing and learn how to do your own debugging.

The issue is that ItemAxe has two arrays for damange and speed that are indexed by the tool material.

Why they have this instead of using the normal values, i don't know.

But simple solution DONT extend ItemAxe, instead extend ItemTool and set your values accordingly.

From what you've stated I'll assume that it's on MCP side and mark this as solved.

Posted

But simple solution DONT extend ItemAxe, instead extend ItemTool and set your values accordingly.

 

I have a mod and I want to make sure that my custom enchantment can be applied to axes, even mod added ones.

 

How would I do that under your solution, sir?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

But simple solution DONT extend ItemAxe, instead extend ItemTool and set your values accordingly.

 

I have a mod and I want to make sure that my custom enchantment can be applied to axes, even mod added ones.

 

How would I do that under your solution, sir?

The best solution for this simply play the waiting game for 1.9. The problem isn't forge but MCP. I thing MCP only releases binaries so there isn't a way to fix it through forge this time. Until MCP releases a new snap shot to forge the best solution is to wait.

Posted

The issue is with Minecraft itself, not MCP.

 

MCP is only used by Forge for deobfuscation data, i.e. mapping names like

aa

to

World

. The code itself is decompiled from the Minecraft JAR, deobfuscated with the MCP data and patched by Forge.

 

ItemAxe

will only work for mods when someone submits a PR to Forge with a patch that fixes it (and the PR is accepted) or Mojang changes it in a future version of Minecraft.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

The issue is with Minecraft itself, not MCP.

 

MCP is only used by Forge for deobfuscation data, i.e. mapping names like

aa

to

World

. The code itself is decompiled from the Minecraft JAR, deobfuscated with the MCP data and patched by Forge.

 

ItemAxe

will only work for mods when someone submits a PR to Forge with a patch that fixes it (and the PR is accepted) or Mojang changes it in a future version of Minecraft.

Thanks for the post. It boosted my understanding of the relationship between Forge, MCP, and Minecraft. I would fix the ItemAxe class and post a PR to forge, however, I'm having a issue with "gradlew setupDecompWorkspace" were it locks up during the decompiling process. Right now my hands are tide at due to this issue I'm having.  :-\

Posted

We have hooks in place to allow you to be any type of tool, inculding multiple types of tools.

If you want to make sure you enchant all Axes, then ask the item what tool classes it is an if it contains "axe" enchant it:

https://github.com/MinecraftForge/MinecraftForge/blob/1.9/patches/minecraft/net/minecraft/item/Item.java.patch#L504-L541

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Its describing mod files that I have no idea exist or not. Debug Log: https://pastebin.com/vzcaxWcY Latest Log: https://pastebin.com/kwLBnkTk
    • I turned off EnhancedCelestials and seems to be the problem. Just going to play with it off.
    • ---- Minecraft Crash Report ---- // Hey, that tickles! Hehehe! Time: 2025-03-23 19:19:17 Description: Exception in server tick loop java.lang.NoClassDefFoundError: dev/corgitaco/enhancedcelestials/EnhancedCelestialsWorldData     at TRANSFORMER/[email protected]/com.arcaryx.cobblemonintegrations.enhancedcelestials.EnhancedCelestialsHandler.modifySpawns(EnhancedCelestialsHandler.kt:28) ~[cobblemonintegrations-neoforge-1.21.1-1.1.2.jar%23750!/:1.1.2] {re:mixin,re:classloading}     at TRANSFORMER/[email protected]/com.arcaryx.cobblemonintegrations.enhancedcelestials.EnhancedCelestialsInfluence.affectAction(EnhancedCelestialsInfluence.kt:11) ~[cobblemonintegrations-neoforge-1.21.1-1.1.2.jar%23750!/:1.1.2] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.spawning.detail.SpawnAction.complete$lambda$3(SpawnAction.java:42) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.spawning.context.SpawningContext.applyInfluences(SpawningContext.java:226) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.spawning.context.SpawningContext.applyInfluences$default(SpawningContext.java:191) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.spawning.detail.SpawnAction.complete(SpawnAction.java:42) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.spawning.spawner.TickingSpawner.tick(TickingSpawner.java:77) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.spawning.SpawnerManager.onServerTick(SpawnerManager.java:71) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.events.ServerTickHandler.onTick(ServerTickHandler.java:20) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.Cobblemon.initialize$lambda$21(Cobblemon.java:395) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:mixin,re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.reactive.ObservableSubscription.handle(ObservableSubscription.java:16) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.common.api.reactive.SimpleObservable.emit(SimpleObservable.java:39) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at TRANSFORMER/[email protected]+1.21.1/com.cobblemon.mod.neoforge.event.NeoForgePlatformEventHandler.postServerTick(NeoForgePlatformEventHandler.kt:168) ~[Cobblemon-neoforge-1.6.1+1.21.1.jar%23744!/:?] {re:classloading}     at MC-BOOTSTRAP/net.neoforged.bus/net.neoforged.bus.EventBus.post(EventBus.java:350) ~[bus-8.0.2.jar%23131!/:?] {}     at MC-BOOTSTRAP/net.neoforged.bus/net.neoforged.bus.EventBus.post(EventBus.java:315) ~[bus-8.0.2.jar%23131!/:?] {}     at TRANSFORMER/[email protected]/net.neoforged.neoforge.event.EventHooks.fireServerTickPost(EventHooks.java:1002) ~[neoforge-21.1.133-universal.jar%23658!/:?] {re:mixin,re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:943) ~[client-1.21.1-20240808.144430-srg.jar%23657!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:110) ~[client-1.21.1-20240808.144430-srg.jar%23657!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:A,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:707) ~[client-1.21.1-20240808.144430-srg.jar%23657!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:267) ~[client-1.21.1-20240808.144430-srg.jar%23657!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] {re:mixin} Caused by: java.lang.ClassNotFoundException: dev.corgitaco.enhancedcelestials.EnhancedCelestialsWorldData     at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:220) ~[securejarhandler-3.0.8.jar:?] {}     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?] {}     ... 21 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Cobblemon -- Details:     Version: 1.6.1     Is Snapshot: false     Git Commit: c66de51 (https://gitlab.com/cable-mc/cobblemon/-/commit/c66de51e39dd5144bde3550f630b58f67a835b65)     Branch: HEAD -- System Details -- Details:     Minecraft Version: 1.21.1     Minecraft Version ID: 1.21.1     Operating System: Windows 10 (amd64) version 10.0     Java Version: 21.0.3, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 6847686648 bytes (6530 MiB) / 12650020864 bytes (12064 MiB) up to 12650020864 bytes (12064 MiB)     CPUs: 16     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 7 7800X3D 8-Core Processor                Identifier: AuthenticAMD Family 25 Model 97 Stepping 2     Microarchitecture: Zen 3     Frequency (GHz): 4.19     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: AMD Radeon RX 7900 XTX     Graphics card #0 vendor: Advanced Micro Devices, Inc.     Graphics card #0 VRAM (MiB): 24560.00     Graphics card #0 deviceId: VideoController1     Graphics card #0 versionInfo: 32.0.13031.3015     Graphics card #1 name: AMD Radeon(TM) Graphics     Graphics card #1 vendor: Advanced Micro Devices, Inc.     Graphics card #1 VRAM (MiB): 512.00     Graphics card #1 deviceId: VideoController2     Graphics card #1 versionInfo: 32.0.13031.3015     Memory slot #0 capacity (MiB): 16384.00     Memory slot #0 clockSpeed (GHz): 6.00     Memory slot #0 type: Unknown     Memory slot #1 capacity (MiB): 16384.00     Memory slot #1 clockSpeed (GHz): 6.00     Memory slot #1 type: Unknown     Virtual memory max (MiB): 50133.82     Virtual memory used (MiB): 31843.34     Swap memory total (MiB): 18432.00     Swap memory used (MiB): 145.49     Space in storage for jna.tmpdir (MiB): available: 1667172.50, total: 1907113.00     Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): available: 1667172.50, total: 1907113.00     Space in storage for io.netty.native.workdir (MiB): available: 1667172.50, total: 1907113.00     Space in storage for java.io.tmpdir (MiB): available: 1667172.50, total: 1907113.00     Space in storage for workdir (MiB): available: 1667172.50, total: 1907113.00     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12064m -Xms256m     Loaded Shaderpack: ComplementaryUnbound_r5.4.zip         Profile: HIGH (+0 options changed by user)     Server Running: true     Player Count: 1 / 8; [ServerPlayer['MrSneaky_I'/101, l='ServerLevel[Testing 2]', x=266.85, y=152.00, z=-1323.98]]     Active Data Packs: create:dynamic_data, vanilla, mod/explorify, mod_data, mod/sodium, mod/betterdungeons (incompatible), mod/modernworldcreation (incompatible), mod/fuelinfo (incompatible), mod/fabric_rendering_fluids_v1, mod/enderio_base, mod/endercore, mod/noreportbutton (incompatible), mod/neoforge, mod/modernfix (incompatible), mod/fabric_block_view_api_v2, mod/fabric_command_api_v2, mod/yungsapi (incompatible), mod/mcwstairs (incompatible), mod/gateways, mod/iris, mod/clientcrafting (incompatible), mod/keybindspurger, mod/clickadv (incompatible), mod/cloth_config (incompatible), mod/supplementaries (incompatible), mod/durabilitytooltip, mod/industrialforegoing (incompatible), mod/handcrafted, mod/repurposed_structures, mod/bcc, mod/improved_village_placement, mod/cobblenav (incompatible), mod/blur, mod/bendylib, mod/spark (incompatible), mod/reeses_sodium_options, mod/noisium (incompatible), mod/sspb, mod/welcomescreen (incompatible), mod/mcwroofs (incompatible), mod/lootintegrations_ctov (incompatible), mod/betterendisland (incompatible), mod/dynamic_fps (incompatible), mod/fabric_rendering_data_attachment_v1, mod/toms_storage, mod/enderio_machines, mod/journeymap_api (incompatible), mod/beb (incompatible), mod/byzantine (incompatible), mod/fabric_client_tags_api_v1, mod/smartbrainlib (incompatible), mod/bellsandwhistles (incompatible), mod/puffish_skills (incompatible), mod/lithium, mod/attributefix (incompatible), mod/fabric_screen_handler_api_v1, mod/seals, mod/caelus (incompatible), mod/paxi (incompatible), mod/mcwholidays (incompatible), mod/fastasyncworldsave (incompatible), mod/epherolib (incompatible), mod/farmingforblockheads (incompatible), mod/craterlib (incompatible), mod/sdlink (incompatible), mod/snowundertrees, mod/midnightlib, mod/morebrushes (incompatible), mod/additional_lights, mod/compacthelpcommand, mod/fusion, mod/fabric_particles_v1, mod/emotecraft, mod/dungeons_arise, mod/tectonic, mod/smoothchunk (incompatible), mod/logprot (incompatible), mod/emi (incompatible), mod/tmtcd, mod/tmted (incompatible), mod/tmtceic, mod/voicechat (incompatible), mod/terrablender (incompatible), mod/longerchathistory, mod/lootintegration_wda (incompatible), mod/necronomicon (incompatible), mod/justenoughbreeding (incompatible), mod/alltheleaks, mod/cleanswing, mod/fabric_block_api_v1, mod/corgilib (incompatible), mod/fabric_resource_conditions_api_v1, mod/fastpaintings (incompatible), mod/sushigocrafting (incompatible), mod/domum_ornamentum, mod/brewinandchewin (incompatible), mod/notenoughanimations (incompatible), mod/flywheel (incompatible), mod/greenhouseconfig_night_config, mod/almostunified (incompatible), mod/farmers_structures, mod/wits, mod/fabric_registry_sync_v0, mod/immediatelyfast (incompatible), mod/structory_towers, mod/appleskin (incompatible), mod/lootr, mod/fabric_object_builder_api_v1, mod/occultism, mod/emi_ores, mod/fabric_message_api_v1, mod/extremesoundmuffler (incompatible), mod/cosmeticarmorreworked (incompatible), mod/euphoria_patcher (incompatible), mod/keybindbundles, mod/defaultoptions (incompatible), mod/kuma_api (incompatible), mod/fabric_renderer_api_v1, mod/fabric_item_api_v1, mod/towntalk, mod/sophisticatedcore (incompatible), mod/gpumemleakfix (incompatible), mod/structureessentials (incompatible), mod/elytra_physics, mod/arts_and_crafts (incompatible), mod/prism, mod/placebo, mod/fastfurnace, mod/lootintegrations (incompatible), mod/cobweb (incompatible), mod/bookshelf (incompatible), mod/sophisticatedbackpacks (incompatible), mod/condensed_creative (incompatible), mod/takesapillage (incompatible), mod/mcwdoors (incompatible), mod/sodiumoptionsapi (incompatible), mod/melody (incompatible), mod/fzzy_config, mod/particle_core, mod/emi_loot, mod/fabric_api, mod/irons_rpg_tweaks, mod/konkrete (incompatible), mod/chipped, mod/mcwbridges (incompatible), mod/entity_model_features (incompatible), mod/entity_texture_features (incompatible), mod/fastipping (incompatible), mod/hostilenetworks, mod/ambientsounds (incompatible), mod/jearchaeology (incompatible), mod/cobblemonintegrations, mod/fabric_api_lookup_api_v1, mod/projectvibrantjourneys, mod/iron_ender_chests, mod/fuelgoeshere (incompatible), mod/greenhouseconfig, mod/simplylight (incompatible), mod/industrialforegoingsouls (incompatible), mod/lionfishapi (incompatible), mod/chisel_chipped_integration, mod/cataclysm (incompatible), mod/blockui, mod/structurize, mod/camera (incompatible), mod/spyglass_improvements (incompatible), mod/smithingtemplateviewer, mod/mysticalcustomization, mod/elevatorid, mod/darkdeath, mod/runelic (incompatible), mod/starterkit, mod/desiredservers, mod/aiimprovements, mod/cupboard (incompatible), mod/cherishedworlds (incompatible), mod/lightoverlay (incompatible), mod/darkcap, mod/framework (incompatible), mod/bwncr (incompatible), mod/hopo, mod/playertrade, mod/observable (incompatible), mod/cosmeticarmoursmod, mod/atlas_api, mod/collectorsalbum (incompatible), mod/dataanchor (incompatible), mod/fabric_key_binding_api_v1, mod/betteradvancements (incompatible), mod/fabric_transfer_api_v1, mod/commonnetworking (incompatible), mod/fabric_resource_loader_v0, mod/goldenhopper (incompatible), mod/mcwpaintings (incompatible), mod/clumps (incompatible), mod/artifacts, mod/cyanide (incompatible), mod/hopour, mod/toastcontrol, mod/txnilib (incompatible), mod/trophymanager (incompatible), mod/akashictome (incompatible), mod/skinlayers3d (incompatible), mod/travelerstitles (incompatible), mod/raided, mod/jeimultiblocks, mod/chattoggle (incompatible), mod/repeatable_trial_vaults (incompatible), mod/mysticalagriculture, mod/craftingtweaks (incompatible), mod/apothic_spawners, mod/enderio_conduits, mod/chunkyborder (incompatible), mod/chunky (incompatible), mod/fabric_blockrenderlayer_v1, mod/creativecore (incompatible), mod/pyrotechnic_elytra (incompatible), mod/ftbjeiextras, mod/whats_that_slot (incompatible), mod/enderio, mod/justplayerheads, mod/mes (incompatible), mod/polyeng, mod/fastbench, mod/fabric_gametest_api_v1, mod/fluxnetworks (incompatible), mod/fabric_biome_api_v1, mod/buildinggadgets2 (incompatible), mod/fancymenu (incompatible), mod/raised (incompatible), mod/minecolonies, mod/emi_enchanting, mod/ferritecore (incompatible), mod/functionalstorage (incompatible), mod/modularrouters, mod/enhancedcelestials (incompatible), mod/notrample (incompatible), mod/betterf3 (incompatible), mod/rarcompat (incompatible), mod/littletiles (incompatible), mod/flickerfix, mod/moderately, mod/supermartijn642configlib (incompatible), mod/sodium_extra, mod/sodiumextras (incompatible), mod/additionalentityattributes, mod/ponder (incompatible), mod/playeranimator, mod/mcwwindows (incompatible), mod/cobblemon_quests (incompatible), mod/featurerecycler, mod/fabric_convention_tags_v1, mod/nanny, mod/fabric_convention_tags_v2, mod/powah (incompatible), mod/maxhealthfix (incompatible), mod/createcasing (incompatible), mod/cobbreeding (incompatible), mod/ae2importexportcard, mod/balm (incompatible), mod/labels (incompatible), mod/fabric_screen_api_v1, mod/prickle (incompatible), mod/soul_fire_d (incompatible), mod/chat_heads (incompatible), mod/betterthanmending (incompatible), mod/structure_layout_optimizer, mod/crash_assistant (incompatible), mod/sodiumextrainformation, mod/ctov, mod/athena, mod/stylecolonies, mod/novillagerdm, mod/lmft (incompatible), mod/alltheores, mod/glodium (incompatible), mod/chatnotify (incompatible), mod/torchmaster (incompatible), mod/sussysniffers, mod/fabric_game_rule_api_v1, mod/ironfurnaces, mod/mcwtrpdoors (incompatible), mod/mr_lukis_crazychambers, mod/silentgear, mod/supermartijn642corelib, mod/yungsbridges (incompatible), mod/apothic_attributes, mod/resourcefulconfig, mod/servercore (incompatible), mod/mr_tidal_towns (incompatible), mod/structureexpansion (incompatible), mod/curios (incompatible), mod/searchables (incompatible), mod/cobblemon (incompatible), mod/cobblemon_utility, mod/capture_xp (incompatible), mod/icarus, mod/fabric_entity_events_v1, mod/sodiumoptionsmodcompat (incompatible), mod/betterwithminecolonies (incompatible), mod/apothic_enchanting, mod/apotheosis, mod/emiprofessions (incompatible), mod/jadeaddons (incompatible), mod/codechickenlib (incompatible), mod/despawntweaks (incompatible), mod/ae2jeiintegration, mod/elytraslot (incompatible), mod/questkilltask, mod/formationsnether, mod/fabric_model_loading_api_v1, mod/multipiston, mod/lithostitched, mod/mekanism, mod/mekanismgenerators, mod/invtweaks (incompatible), mod/fabric_rendering_v1, mod/fabric_renderer_indigo, mod/naturescompass (incompatible), mod/smarterfarmers (incompatible), mod/catjammies (incompatible), mod/lightmanscurrency, mod/lctech (incompatible), mod/starterstructure, mod/neruina (incompatible), mod/catalogue (incompatible), mod/solonion (incompatible), mod/more_immersive_wires (incompatible), mod/formations, mod/pocketmachines (incompatible), mod/chalk (incompatible), mod/crystalix, mod/logbegone (incompatible), mod/mcwpaths (incompatible), mod/drippyloadingscreen (incompatible), mod/zerocore (incompatible), mod/lootintegrations_hopo (incompatible), mod/formationsoverworld, mod/simplebackups, mod/fabric_api_base, mod/immersiveengineering (incompatible), mod/nochatreports, mod/allthemodium, mod/ohthetreesyoullgrow (incompatible), mod/spectrelib (incompatible), mod/nbt_ac, mod/e4mc_minecraft (incompatible), mod/kotlinforforge (incompatible), mod/dimdungeons, mod/croptopia, mod/fabric_item_group_api_v1, mod/imfast, mod/polymorph (incompatible), mod/l2core (incompatible), mod/createcontraptionterminals (incompatible), mod/enderio_conduits_modded, mod/cobbleride (incompatible), mod/ae2qolrecipes (incompatible), mod/fabric_recipe_api_v1, mod/showcaseitem, mod/biomemusic (incompatible), mod/mns (incompatible), mod/fabric_sound_api_v1, mod/convenientcurioscontainer, mod/xpbook, mod/jinxedlib (incompatible), mod/netherportalfix (incompatible), mod/geckolib, mod/biomeswevegone, mod/ars_nouveau (incompatible), mod/ars_polymorphia, mod/ars_elemental (incompatible), mod/recipeessentials (incompatible), mod/morejs (incompatible), mod/connectivity (incompatible), mod/immersive_aircraft (incompatible), mod/kleeslabs (incompatible), mod/paperdoll (incompatible), mod/cookingforblockheads (incompatible), mod/controlling (incompatible), mod/fabric_data_attachment_api_v1, mod/redirected (incompatible), mod/cobblemonoutbreaks, mod/itemzoom (incompatible), mod/relics (incompatible), mod/jeed (incompatible), mod/coolcatlib (incompatible), mod/nuggets (incompatible), mod/darktimer, mod/cfm_circuit_breaker, mod/dummmmmmy (incompatible), mod/fabric_content_registries_v0, mod/sodiumdynamiclights (incompatible), mod/greenhouseconfig_toml, mod/thaumon (incompatible), mod/prettypipes (incompatible), mod/ppfluids, mod/arseng, mod/crashexploitfixer, mod/farmersdelight (incompatible), mod/mynethersdelight (incompatible), mod/arsdelight (incompatible), mod/farmers_croptopia (incompatible), mod/createframed (incompatible), mod/anvianslib (incompatible), mod/leveltextfix (incompatible), mod/simpletms (incompatible), mod/create_ultimate_factory, mod/endrem (incompatible), mod/cmdcam (incompatible), mod/mcwfences (incompatible), mod/colorfulhearts (incompatible), mod/leaky (incompatible), mod/patchouli (incompatible), mod/ars_additions (incompatible), mod/allthearcanistgear, mod/collective, mod/ftbultimine (incompatible), mod/ultimine_addition (incompatible), mod/betterstrongholds (incompatible), mod/mifa (incompatible), mod/resourcefullib, mod/tbcs, mod/mekanismtools, mod/lootjs, mod/cobblemonextras (incompatible), mod/architectury (incompatible), mod/cardiac (incompatible), mod/cobblemonchallenge, mod/fightorflight (incompatible), mod/ftblibrary (incompatible), mod/ftbteams (incompatible), mod/ftbranks (incompatible), mod/ftbessentials (incompatible), mod/ftbchunks (incompatible), mod/jamlib (incompatible), mod/rightclickharvest (incompatible), mod/ftbquests (incompatible), mod/rctapi, mod/fabric_loot_api_v2, mod/fabric_loot_api_v3, mod/bigreactors (incompatible), mod/refurbished_furniture (incompatible), mod/cobblemon_move_inspector, mod/mru (incompatible), mod/fabric_networking_api_v1, mod/inventoryessentials (incompatible), mod/justdirethings, mod/yeetusexperimentus (incompatible), mod/fabric_lifecycle_events_v1, mod/irons_jewelry, mod/villagesandpillages (incompatible), mod/rhino, mod/toomanyrecipeviewers,jei, mod/kubejs (incompatible), mod/kubejs_enderio, mod/ftbxmodcompat (incompatible), mod/ftbfiltersystem (incompatible), mod/kubejs_mekanism, mod/neo_auth, mod/cucumber, mod/jmi (incompatible), mod/sophisticatedstorage (incompatible), mod/ftbpmapi, mod/octolib, mod/mss (incompatible), mod/pkgbadges (incompatible), mod/rctmod, mod/pipe_connector (incompatible), mod/darksleep, mod/simplerpc (incompatible), mod/justmobheads, mod/rainbows (incompatible), mod/create (incompatible), mod/ars_creo (incompatible), mod/framedblocks, mod/waystones (incompatible), mod/mr_farmers_cuttingregionsunexplored, mod/structory, mod/sparkweave, mod/journeymap (incompatible), mod/create_ltab (incompatible), mod/comforts (incompatible), mod/alternate_current, mod/configured (incompatible), mod/dungeoncrawl, mod/charginggadgets (incompatible), mod/aggroindicator (incompatible), mod/guideme, mod/waveycapes (incompatible), mod/spawn_notification (incompatible), mod/farsight_view (incompatible), mod/enderstorage (incompatible), mod/moredelight (incompatible), mod/fabric_transitive_access_wideners_v1, mod/enchdesc (incompatible), mod/moonlight (incompatible), mod/configuration (incompatible), mod/titanium, mod/regions_unexplored (incompatible), mod/distraction_free_recipes (incompatible), mod/mr_farmers_cuttingohthebiomeswevegone, mod/silentlib (incompatible), mod/jade (incompatible), mod/ae2 (incompatible), mod/ars_unification, mod/ae2ct, mod/ae2netanalyser (incompatible), mod/ae2wtlib (incompatible), mod/extendedae (incompatible), mod/ae2wtlib_api, mod/advanced_ae (incompatible), mod/appflux (incompatible), mod/enderio_armory, mod/yigd, mod/iceberg, mod/equipmentcompare, mod/legendarytooltips, mod/advancementplaques, mod/tradeuses (incompatible), mod/nullscape, mod/jei_mekanism_multiblocks (incompatible), mod/cobblepedia (incompatible), mod/armourers_workshop (incompatible), mod/modonomicon (incompatible), mod/coroutil (incompatible), mod/watut (incompatible), mod/mvs (incompatible), mod/create_pattern_schematics (incompatible), mod/extradelight (incompatible), mod/yet_another_config_lib_v3 (incompatible), mod/moredragoneggs (incompatible), mod/woodwevegot, mod/lootintegrations_cataclysm (incompatible), mod/appmek (incompatible), mod/packetfixer (incompatible), mod/expandability, mod/xtonesreworked (incompatible), mod/fabric_data_generation_api_v1, mod/fabric_events_interaction_v0, mod/better_respawn (incompatible), mod/sophisticatedstorageinmotion (incompatible), fabric, BCA-Datapack-3.5_GE_C1.6.1_M1.21.1.zip, [m]odified-additional-spawns.zip (incompatible), [m]odified-ore-tweaks.zip (incompatible), ctovcobblemon-v1.0.1.zip, tectonic, supplementaries:generated_pack, mod/soul_fire_d:datapack/enchantments, mod/cobblemon:datapacks/repurposedstructurescobblemon, soul_fire_d:fire_source_tags, soul_fire_d:campfire_tags     Available Data Packs: bundle, trade_rebalance, vanilla, fabric, mod/additional_lights, mod/additionalentityattributes, mod/advanced_ae (incompatible), mod/advancementplaques, mod/ae2 (incompatible), mod/ae2ct, mod/ae2importexportcard, mod/ae2jeiintegration, mod/ae2netanalyser (incompatible), mod/ae2qolrecipes (incompatible), mod/ae2wtlib (incompatible), mod/ae2wtlib_api, mod/aggroindicator (incompatible), mod/aiimprovements, mod/akashictome (incompatible), mod/allthearcanistgear, mod/alltheleaks, mod/allthemodium, mod/alltheores, mod/almostunified (incompatible), mod/alternate_current, mod/ambientsounds (incompatible), mod/anvianslib (incompatible), mod/apotheosis, mod/apothic_attributes, mod/apothic_enchanting, mod/apothic_spawners, mod/appflux (incompatible), mod/appleskin (incompatible), mod/appmek (incompatible), mod/architectury (incompatible), mod/armourers_workshop (incompatible), mod/ars_additions (incompatible), mod/ars_creo (incompatible), mod/ars_elemental (incompatible), mod/ars_nouveau (incompatible), mod/ars_polymorphia, mod/ars_unification, mod/arsdelight (incompatible), mod/arseng, mod/artifacts, mod/arts_and_crafts (incompatible), mod/athena, mod/atlas_api, mod/attributefix (incompatible), mod/balm (incompatible), mod/bcc, mod/beb (incompatible), mod/bellsandwhistles (incompatible), mod/bendylib, mod/better_respawn (incompatible), mod/betteradvancements (incompatible), mod/betterdungeons (incompatible), mod/betterendisland (incompatible), mod/betterf3 (incompatible), mod/betterstrongholds (incompatible), mod/betterthanmending (incompatible), mod/betterwithminecolonies (incompatible), mod/bigreactors (incompatible), mod/biomemusic (incompatible), mod/biomeswevegone, mod/blockui, mod/blur, mod/bookshelf (incompatible), mod/brewinandchewin (incompatible), mod/buildinggadgets2 (incompatible), mod/bwncr (incompatible), mod/byzantine (incompatible), mod/caelus (incompatible), mod/camera (incompatible), mod/capture_xp (incompatible), mod/cardiac (incompatible), mod/cataclysm (incompatible), mod/catalogue (incompatible), mod/catjammies (incompatible), mod/cfm_circuit_breaker, mod/chalk (incompatible), mod/charginggadgets (incompatible), mod/chat_heads (incompatible), mod/chatnotify (incompatible), mod/chattoggle (incompatible), mod/cherishedworlds (incompatible), mod/chipped, mod/chisel_chipped_integration, mod/chunky (incompatible), mod/chunkyborder (incompatible), mod/cleanswing, mod/clickadv (incompatible), mod/clientcrafting (incompatible), mod/cloth_config (incompatible), mod/clumps (incompatible), mod/cmdcam (incompatible), mod/cobblemon (incompatible), mod/cobblemon_move_inspector, mod/cobblemon_quests (incompatible), mod/cobblemon_utility, mod/cobblemonchallenge, mod/cobblemonextras (incompatible), mod/cobblemonintegrations, mod/cobblemonoutbreaks, mod/cobblenav (incompatible), mod/cobblepedia (incompatible), mod/cobbleride (incompatible), mod/cobbreeding (incompatible), mod/cobweb (incompatible), mod/codechickenlib (incompatible), mod/collective, mod/collectorsalbum (incompatible), mod/colorfulhearts (incompatible), mod/comforts (incompatible), mod/commonnetworking (incompatible), mod/compacthelpcommand, mod/condensed_creative (incompatible), mod/configuration (incompatible), mod/configured (incompatible), mod/connectivity (incompatible), mod/controlling (incompatible), mod/convenientcurioscontainer, mod/cookingforblockheads (incompatible), mod/coolcatlib (incompatible), mod/corgilib (incompatible), mod/coroutil (incompatible), mod/cosmeticarmorreworked (incompatible), mod/cosmeticarmoursmod, mod/craftingtweaks (incompatible), mod/crash_assistant (incompatible), mod/crashexploitfixer, mod/craterlib (incompatible), mod/create (incompatible), mod/create_ltab (incompatible), mod/create_pattern_schematics (incompatible), mod/create_ultimate_factory, mod/createcasing (incompatible), mod/createcontraptionterminals (incompatible), mod/createframed (incompatible), mod/creativecore (incompatible), mod/croptopia, mod/crystalix, mod/ctov, mod/cucumber, mod/cupboard (incompatible), mod/curios (incompatible), mod/cyanide (incompatible), mod/darkcap, mod/darkdeath, mod/darksleep, mod/darktimer, mod/dataanchor (incompatible), mod/defaultoptions (incompatible), mod/desiredservers, mod/despawntweaks (incompatible), mod/dimdungeons, mod/distraction_free_recipes (incompatible), mod/domum_ornamentum, mod/drippyloadingscreen (incompatible), mod/dummmmmmy (incompatible), mod/dungeoncrawl, mod/dungeons_arise, mod/durabilitytooltip, mod/dynamic_fps (incompatible), mod/e4mc_minecraft (incompatible), mod/elevatorid, mod/elytra_physics, mod/elytraslot (incompatible), mod/emi (incompatible), mod/emi_enchanting, mod/emi_loot, mod/emi_ores, mod/emiprofessions (incompatible), mod/emotecraft, mod/enchdesc (incompatible), mod/endercore, mod/enderio, mod/enderio_armory, mod/enderio_base, mod/enderio_conduits, mod/enderio_conduits_modded, mod/enderio_machines, mod/enderstorage (incompatible), mod/endrem (incompatible), mod/enhancedcelestials (incompatible), mod/entity_model_features (incompatible), mod/entity_texture_features (incompatible), mod/epherolib (incompatible), mod/equipmentcompare, mod/euphoria_patcher (incompatible), mod/expandability, mod/explorify, mod/extendedae (incompatible), mod/extradelight (incompatible), mod/extremesoundmuffler (incompatible), mod/fabric_api, mod/fabric_api_base, mod/fabric_api_lookup_api_v1, mod/fabric_biome_api_v1, mod/fabric_block_api_v1, mod/fabric_block_view_api_v2, mod/fabric_blockrenderlayer_v1, mod/fabric_client_tags_api_v1, mod/fabric_command_api_v2, mod/fabric_content_registries_v0, mod/fabric_convention_tags_v1, mod/fabric_convention_tags_v2, mod/fabric_data_attachment_api_v1, mod/fabric_data_generation_api_v1, mod/fabric_entity_events_v1, mod/fabric_events_interaction_v0, mod/fabric_game_rule_api_v1, mod/fabric_gametest_api_v1, mod/fabric_item_api_v1, mod/fabric_item_group_api_v1, mod/fabric_key_binding_api_v1, mod/fabric_lifecycle_events_v1, mod/fabric_loot_api_v2, mod/fabric_loot_api_v3, mod/fabric_message_api_v1, mod/fabric_model_loading_api_v1, mod/fabric_networking_api_v1, mod/fabric_object_builder_api_v1, mod/fabric_particles_v1, mod/fabric_recipe_api_v1, mod/fabric_registry_sync_v0, mod/fabric_renderer_api_v1, mod/fabric_renderer_indigo, mod/fabric_rendering_data_attachment_v1, mod/fabric_rendering_fluids_v1, mod/fabric_rendering_v1, mod/fabric_resource_conditions_api_v1, mod/fabric_resource_loader_v0, mod/fabric_screen_api_v1, mod/fabric_screen_handler_api_v1, mod/fabric_sound_api_v1, mod/fabric_transfer_api_v1, mod/fabric_transitive_access_wideners_v1, mod/fancymenu (incompatible), mod/farmers_croptopia (incompatible), mod/farmers_structures, mod/farmersdelight (incompatible), mod/farmingforblockheads (incompatible), mod/farsight_view (incompatible), mod/fastasyncworldsave (incompatible), mod/fastbench, mod/fastfurnace, mod/fastipping (incompatible), mod/fastpaintings (incompatible), mod/featurerecycler, mod/ferritecore (incompatible), mod/fightorflight (incompatible), mod/flickerfix, mod/fluxnetworks (incompatible), mod/flywheel (incompatible), mod/formations, mod/formationsnether, mod/formationsoverworld, mod/framedblocks, mod/framework (incompatible), mod/ftbchunks (incompatible), mod/ftbessentials (incompatible), mod/ftbfiltersystem (incompatible), mod/ftbjeiextras, mod/ftblibrary (incompatible), mod/ftbpmapi, mod/ftbquests (incompatible), mod/ftbranks (incompatible), mod/ftbteams (incompatible), mod/ftbultimine (incompatible), mod/ftbxmodcompat (incompatible), mod/fuelgoeshere (incompatible), mod/fuelinfo (incompatible), mod/functionalstorage (incompatible), mod/fusion, mod/fzzy_config, mod/gateways, mod/geckolib, mod/glodium (incompatible), mod/goldenhopper (incompatible), mod/gpumemleakfix (incompatible), mod/greenhouseconfig, mod/greenhouseconfig_night_config, mod/greenhouseconfig_toml, mod/guideme, mod/handcrafted, mod/hopo, mod/hopour, mod/hostilenetworks, mod/icarus, mod/iceberg, mod/imfast, mod/immediatelyfast (incompatible), mod/immersive_aircraft (incompatible), mod/immersiveengineering (incompatible), mod/improved_village_placement, mod/industrialforegoing (incompatible), mod/industrialforegoingsouls (incompatible), mod/inventoryessentials (incompatible), mod/invtweaks (incompatible), mod/iris, mod/iron_ender_chests, mod/ironfurnaces, mod/irons_jewelry, mod/irons_rpg_tweaks, mod/itemzoom (incompatible), mod/jade (incompatible), mod/jadeaddons (incompatible), mod/jamlib (incompatible), mod/jearchaeology (incompatible), mod/jeed (incompatible), mod/jei_mekanism_multiblocks (incompatible), mod/jeimultiblocks, mod/jinxedlib (incompatible), mod/jmi (incompatible), mod/journeymap (incompatible), mod/journeymap_api (incompatible), mod/justdirethings, mod/justenoughbreeding (incompatible), mod/justmobheads, mod/justplayerheads, mod/keybindbundles, mod/keybindspurger, mod/kleeslabs (incompatible), mod/konkrete (incompatible), mod/kotlinforforge (incompatible), mod/kubejs (incompatible), mod/kubejs_enderio, mod/kubejs_mekanism, mod/kuma_api (incompatible), mod/l2core (incompatible), mod/labels (incompatible), mod/lctech (incompatible), mod/leaky (incompatible), mod/legendarytooltips, mod/leveltextfix (incompatible), mod/lightmanscurrency, mod/lightoverlay (incompatible), mod/lionfishapi (incompatible), mod/lithium, mod/lithostitched, mod/littletiles (incompatible), mod/lmft (incompatible), mod/logbegone (incompatible), mod/logprot (incompatible), mod/longerchathistory, mod/lootintegration_wda (incompatible), mod/lootintegrations (incompatible), mod/lootintegrations_cataclysm (incompatible), mod/lootintegrations_ctov (incompatible), mod/lootintegrations_hopo (incompatible), mod/lootjs, mod/lootr, mod/maxhealthfix (incompatible), mod/mcwbridges (incompatible), mod/mcwdoors (incompatible), mod/mcwfences (incompatible), mod/mcwholidays (incompatible), mod/mcwpaintings (incompatible), mod/mcwpaths (incompatible), mod/mcwroofs (incompatible), mod/mcwstairs (incompatible), mod/mcwtrpdoors (incompatible), mod/mcwwindows (incompatible), mod/mekanism, mod/mekanismgenerators, mod/mekanismtools, mod/melody (incompatible), mod/mes (incompatible), mod/midnightlib, mod/mifa (incompatible), mod/minecolonies, mod/mns (incompatible), mod/moderately, mod/modernfix (incompatible), mod/modernworldcreation (incompatible), mod/modonomicon (incompatible), mod/modularrouters, mod/moonlight (incompatible), mod/more_immersive_wires (incompatible), mod/morebrushes (incompatible), mod/moredelight (incompatible), mod/moredragoneggs (incompatible), mod/morejs (incompatible), mod/mr_farmers_cuttingohthebiomeswevegone, mod/mr_farmers_cuttingregionsunexplored, mod/mr_lukis_crazychambers, mod/mr_tidal_towns (incompatible), mod/mru (incompatible), mod/mss (incompatible), mod/multipiston, mod/mvs (incompatible), mod/mynethersdelight (incompatible), mod/mysticalagriculture, mod/mysticalcustomization, mod/nanny, mod/naturescompass (incompatible), mod/nbt_ac, mod/necronomicon (incompatible), mod/neo_auth, mod/neoforge, mod/neruina (incompatible), mod/netherportalfix (incompatible), mod/nochatreports, mod/noisium (incompatible), mod/noreportbutton (incompatible), mod/notenoughanimations (incompatible), mod/notrample (incompatible), mod/novillagerdm, mod/nuggets (incompatible), mod/nullscape, mod/observable (incompatible), mod/occultism, mod/octolib, mod/ohthetreesyoullgrow (incompatible), mod/packetfixer (incompatible), mod/paperdoll (incompatible), mod/particle_core, mod/patchouli (incompatible), mod/paxi (incompatible), mod/pipe_connector (incompatible), mod/pkgbadges (incompatible), mod/placebo, mod/playeranimator, mod/playertrade, mod/pocketmachines (incompatible), mod/polyeng, mod/polymorph (incompatible), mod/ponder (incompatible), mod/powah (incompatible), mod/ppfluids, mod/prettypipes (incompatible), mod/prickle (incompatible), mod/prism, mod/projectvibrantjourneys, mod/puffish_skills (incompatible), mod/pyrotechnic_elytra (incompatible), mod/questkilltask, mod/raided, mod/rainbows (incompatible), mod/raised (incompatible), mod/rarcompat (incompatible), mod/rctapi, mod/rctmod, mod/recipeessentials (incompatible), mod/redirected (incompatible), mod/reeses_sodium_options, mod/refurbished_furniture (incompatible), mod/regions_unexplored (incompatible), mod/relics (incompatible), mod/repeatable_trial_vaults (incompatible), mod/repurposed_structures, mod/resourcefulconfig, mod/resourcefullib, mod/rhino, mod/rightclickharvest (incompatible), mod/runelic (incompatible), mod/sdlink (incompatible), mod/seals, mod/searchables (incompatible), mod/servercore (incompatible), mod/showcaseitem, mod/silentgear, mod/silentlib (incompatible), mod/simplebackups, mod/simplerpc (incompatible), mod/simpletms (incompatible), mod/simplylight (incompatible), mod/skinlayers3d (incompatible), mod/smartbrainlib (incompatible), mod/smarterfarmers (incompatible), mod/smithingtemplateviewer, mod/smoothchunk (incompatible), mod/snowundertrees, mod/sodium, mod/sodium_extra, mod/sodiumdynamiclights (incompatible), mod/sodiumextrainformation, mod/sodiumextras (incompatible), mod/sodiumoptionsapi (incompatible), mod/sodiumoptionsmodcompat (incompatible), mod/solonion (incompatible), mod/sophisticatedbackpacks (incompatible), mod/sophisticatedcore (incompatible), mod/sophisticatedstorage (incompatible), mod/sophisticatedstorageinmotion (incompatible), mod/soul_fire_d (incompatible), mod/spark (incompatible), mod/sparkweave, mod/spawn_notification (incompatible), mod/spectrelib (incompatible), mod/spyglass_improvements (incompatible), mod/sspb, mod/starterkit, mod/starterstructure, mod/structory, mod/structory_towers, mod/structure_layout_optimizer, mod/structureessentials (incompatible), mod/structureexpansion (incompatible), mod/structurize, mod/stylecolonies, mod/supermartijn642configlib (incompatible), mod/supermartijn642corelib, mod/supplementaries (incompatible), mod/sushigocrafting (incompatible), mod/sussysniffers, mod/takesapillage (incompatible), mod/tbcs, mod/tectonic, mod/terrablender (incompatible), mod/thaumon (incompatible), mod/titanium, mod/tmtcd, mod/tmtceic, mod/tmted (incompatible), mod/toastcontrol, mod/toms_storage, mod/toomanyrecipeviewers,jei, mod/torchmaster (incompatible), mod/towntalk, mod/tradeuses (incompatible), mod/travelerstitles (incompatible), mod/trophymanager (incompatible), mod/txnilib (incompatible), mod/ultimine_addition (incompatible), mod/villagesandpillages (incompatible), mod/voicechat (incompatible), mod/watut (incompatible), mod/waveycapes (incompatible), mod/waystones (incompatible), mod/welcomescreen (incompatible), mod/whats_that_slot (incompatible), mod/wits, mod/woodwevegot, mod/xpbook, mod/xtonesreworked (incompatible), mod/yeetusexperimentus (incompatible), mod/yet_another_config_lib_v3 (incompatible), mod/yigd, mod/yungsapi (incompatible), mod/yungsbridges (incompatible), mod/zerocore (incompatible), mod_data, BCA-Datapack-3.5_GE_C1.6.1_M1.21.1.zip, [m]odified-additional-spawns.zip (incompatible), [m]odified-ore-tweaks.zip (incompatible), ctovcobblemon-v1.0.1.zip, tectonic, supplementaries:generated_pack, soul_fire_d:fire_source_tags, soul_fire_d:campfire_tags, mod/soul_fire_d:datapack/enchantments, mod/cobblemon:datapacks/repurposedstructurescobblemon, create:dynamic_data     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     World Seed: 4033299606505771744     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'neoforge'; Server brand changed to 'neoforge'     Launched Version: neoforge-21.1.133     ModLauncher: 11.0.4+main.d2e20e43     ModLauncher launch target: forgeclient     ModLauncher services:          sponge-mixin-0.15.2+mixin.0.8.7.jar mixin PLUGINSERVICE          loader-4.0.38.jar slf4jfixer PLUGINSERVICE          loader-4.0.38.jar runtime_enum_extender PLUGINSERVICE          at-modlauncher-10.0.1.jar accesstransformer PLUGINSERVICE          loader-4.0.38.jar runtimedistcleaner PLUGINSERVICE          modlauncher-11.0.4.jar mixin TRANSFORMATIONSERVICE          modlauncher-11.0.4.jar fml TRANSFORMATIONSERVICE          modlauncher-11.0.4.jar crash_assistant TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]+0.16.0+1.21         [email protected]         [email protected]         [email protected]         [email protected]     Mod List:          skinlayers3d-neoforge-1.7.4-mc1.21.jar            |3d-Skin-Layers                |skinlayers3d                  |1.7.4               |Manifest: NOSIGNATURE         AdditionalEntityAttributes-2.0.0+1.21.1-neoforge.j|Additional Entity Attributes  |additionalentityattributes    |2.0.0+1.21.1        |Manifest: NOSIGNATURE         additional_lights-neoforge-1.21-2.1.9.jar         |Additional Lights             |additional_lights             |2.1.9               |Manifest: NOSIGNATURE         AdvancedAE-1.2.5-1.21.1.jar                       |Advanced AE                   |advanced_ae                   |1.2.5-1.21.1        |Manifest: NOSIGNATURE         AdvancementPlaques-1.21.1-neoforge-1.6.8.jar      |Advancement Plaques           |advancementplaques            |1.6.8               |Manifest: NOSIGNATURE         ae2importexportcard-1.21-1.4.0.jar                |AE2 Import Export Card        |ae2importexportcard           |1.21-1.4.0          |Manifest: NOSIGNATURE         ae2jeiintegration-1.2.0.jar                       |AE2 JEI Integration           |ae2jeiintegration             |1.2.0               |Manifest: NOSIGNATURE         ae2qolrecipes-neoforge-1.21.x-1.3.0.jar           |AE2 QoL Recipes               |ae2qolrecipes                 |1.3.0               |Manifest: NOSIGNATURE         ae2ct-1.21.1-1.0.6.jar                            |AE2:Crafting Tree             |ae2ct                         |1.21.1-1.0.6        |Manifest: NOSIGNATURE         AE2NetworkAnalyzer-1.21-2.0.1-neoforge.jar        |AE2NetworkAnalyzer            |ae2netanalyser                |1.21-2.0.1-neoforge |Manifest: NOSIGNATURE         ae2wtlib-19.2.2.jar                               |AE2WTLib                      |ae2wtlib                      |19.2.2              |Manifest: NOSIGNATURE         de.mari_023.ae2wtlib_api-19.2.2.jar               |AE2WTLib API                  |ae2wtlib_api                  |19.2.2              |Manifest: NOSIGNATURE         aggroindicator-neoforge-1.21.1-2.0.1.jar          |Aggro Indicator               |aggroindicator                |2.0.1               |Manifest: NOSIGNATURE         AI-Improvements-1.21-0.5.3.jar                    |AI-Improvements               |aiimprovements                |0.5.3               |Manifest: NOSIGNATURE         AkashicTome-1.8-29.jar                            |Akashic Tome                  |akashictome                   |1.8-29              |Manifest: NOSIGNATURE         allthearcanistgear-1.21.1-21.3.0.jar              |All The Arcanist Gear         |allthearcanistgear            |1.21.1-21.3.0       |Manifest: NOSIGNATURE         alltheleaks-0.1.15-beta+1.21.1-neoforge.jar       |All The Leaks                 |alltheleaks                   |0.1.15-beta+1.21.1-n|Manifest: NOSIGNATURE         All-The-Wood-Weve-Got-NeoForge-2.2.1.jar          |All the Wood We've Got        |woodwevegot                   |2.2.1               |Manifest: NOSIGNATURE         allthemodium-2.8.10_mc_1.21.1.jar                 |Allthemodium                  |allthemodium                  |2.8.10              |Manifest: NOSIGNATURE         alltheores-3.1.6_neoforge_1.21.1.jar              |AllTheOres                    |alltheores                    |3.1.6               |Manifest: NOSIGNATURE         almostunified-neoforge-1.21.1-1.2.3.jar           |AlmostUnified                 |almostunified                 |1.21.1-1.2.3        |Manifest: NOSIGNATURE         alternate_current-mc1.21-1.9.0.jar                |Alternate Current             |alternate_current             |1.9.0               |Manifest: NOSIGNATURE         AmbientSounds_NEOFORGE_v6.1.6_mc1.21.1.jar        |AmbientSounds                 |ambientsounds                 |6.1.6               |Manifest: NOSIGNATURE         anvianslib-neoforge-1.21-1.1.jar                  |Anvian's Lib                  |anvianslib                    |1.1                 |Manifest: NOSIGNATURE         Apotheosis-1.21.1-8.2.1.jar                       |Apotheosis                    |apotheosis                    |8.2.1               |Manifest: NOSIGNATURE         ApothicAttributes-1.21.1-2.7.0.jar                |Apothic Attributes            |apothic_attributes            |2.7.0               |Manifest: NOSIGNATURE         ApothicEnchanting-1.21.1-1.3.2.jar                |Apothic Enchanting            |apothic_enchanting            |1.3.2               |Manifest: NOSIGNATURE         ApothicSpawners-1.21.1-1.2.1.jar                  |Apothic Spawners              |apothic_spawners              |1.2.1               |Manifest: NOSIGNATURE         appleskin-neoforge-mc1.21-3.0.5.jar               |AppleSkin                     |appleskin                     |3.0.5+mc1.21        |Manifest: NOSIGNATURE         appliedenergistics2-19.2.6-beta.jar               |Applied Energistics 2         |ae2                           |19.2.6-beta         |Manifest: NOSIGNATURE         Applied-Mekanistics-1.6.2.jar                     |Applied Mekanistics           |appmek                        |1.6.2               |Manifest: NOSIGNATURE         AppliedFlux-1.21-2.1.0-neoforge.jar               |AppliedFlux                   |appflux                       |1.21-2.1.0-neoforge |Manifest: NOSIGNATURE         architectury-13.0.8-neoforge.jar                  |Architectury                  |architectury                  |13.0.8              |Manifest: NOSIGNATURE         armourersworkshop-forge-1.21.1-3.2.0-beta.jar     |Armourer's Workshop           |armourers_workshop            |3.2.0-beta          |Manifest: 58:d0:3b:4b:a0:4b:43:fb:59:0f:27:f5:39:d5:65:de:9a:24:ee:2e:15:48:b1:4f:78:1a:e1:ef:cd:a4:d9:0a         ars_additions-1.21.1-21.2.1.jar                   |Ars Additions                 |ars_additions                 |1.21.1-21.2.1       |Manifest: NOSIGNATURE         ars_creo-1.21.1-5.1.0.jar                         |Ars Creo                      |ars_creo                      |5.1.0               |Manifest: NOSIGNATURE         ars_elemental-1.21.1-0.7.2.7.jar                  |Ars Elemental                 |ars_elemental                 |0.7.2.7             |Manifest: NOSIGNATURE         ars_nouveau-1.21.1-5.7.2-all.jar                  |Ars Nouveau                   |ars_nouveau                   |5.7.2               |Manifest: NOSIGNATURE         arsdelight-2.1.5.jar                              |Ars Nouveau's Flavors & Deligh|arsdelight                    |2.1.5               |Manifest: NOSIGNATURE         ars_polymorphia-1.0.3.jar                         |Ars Polymorphia               |ars_polymorphia               |1.0.3               |Manifest: NOSIGNATURE         ars_unification-1.2.10.jar                        |Ars Unification               |ars_unification               |1.2.10              |Manifest: NOSIGNATURE         arseng-2.1.1-beta.jar                             |Ars Énergistique              |arseng                        |2.1.1-beta          |Manifest: NOSIGNATURE         artifacts-neoforge-12.1.0.jar                     |Artifacts                     |artifacts                     |12.1.0              |Manifest: NOSIGNATURE         arts_and_crafts-neoforge-1.21.1-1.4.0.jar         |Arts & Crafts                 |arts_and_crafts               |1.4.0               |Manifest: NOSIGNATURE         athena-neoforge-1.21-4.0.1.jar                    |Athena                        |athena                        |4.0.1               |Manifest: NOSIGNATURE         atlas_api-1.21-1.0.2.jar                          |Atlas API                     |atlas_api                     |1.21-1.0.2          |Manifest: NOSIGNATURE         attributefix-neoforge-1.21.1-21.1.2.jar           |AttributeFix                  |attributefix                  |21.1.2              |Manifest: NOSIGNATURE         bwncr-neoforge-1.21.1-3.20.3.jar                  |Bad Wither No Cookie Reloaded |bwncr                         |3.20.3              |Manifest: NOSIGNATURE         balm-neoforge-1.21.1-21.0.35.jar                  |Balm                          |balm                          |21.0.35             |Manifest: NOSIGNATURE         BEB-NeoForge-1.21-3.0.0.jar                       |Beautiful Enchanted Books     |beb                           |3.0.0               |Manifest: NOSIGNATURE         bendy-lib-forge-5.1.jar                           |Bendy lib                     |bendylib                      |5.1                 |Manifest: NOSIGNATURE         BetterAdvancements-NeoForge-1.21.1-0.4.3.21.jar   |Better Advancements           |betteradvancements            |0.4.3.21            |Manifest: NOSIGNATURE         bcc-21.1.3+mc1.21.1.jar                           |Better Compatibility Checker  |bcc                           |21.1.3              |Manifest: NOSIGNATURE         better-respawn-neoforge-1.21.1-2.0.6.jar          |Better Respawn                |better_respawn                |1.21.1-2.0.6        |Manifest: NOSIGNATURE         betterwithminecolonies-1.20.0-1.21.1.jar          |Better With Minecolonies      |betterwithminecolonies        |1.20.0-1.21.1       |Manifest: NOSIGNATURE         BetterF3-11.0.3-NeoForge-1.21.1.jar               |BetterF3                      |betterf3                      |11.0.3              |Manifest: NOSIGNATURE         BetterThanMending-2.2.0.jar                       |BetterThanMending             |betterthanmending             |2.2.0               |Manifest: NOSIGNATURE         biomemusic-1.21-3.4.jar                           |biomemusic mod                |biomemusic                    |3.4                 |Manifest: NOSIGNATURE         blur-neoforge-5.0.0+1.21.jar                      |Blur+                         |blur                          |5.0.0               |Manifest: NOSIGNATURE         bookshelf-neoforge-1.21.1-21.1.50.jar             |Bookshelf                     |bookshelf                     |21.1.50             |Manifest: NOSIGNATURE         BrewinAndChewin-neoforge-4.1.0+1.21.1.jar         |Brewin' And Chewin'           |brewinandchewin               |4.1.0               |Manifest: NOSIGNATURE         buildinggadgets2-1.3.8.jar                        |Building Gadgets 2            |buildinggadgets2              |1.3.8               |Manifest: NOSIGNATURE         Byzantine-1.21.1-30.jar                           |Byzantine                     |byzantine                     |30                  |Manifest: NOSIGNATURE         caelus-neoforge-7.0.1+1.21.1.jar                  |Caelus API                    |caelus                        |7.0.1+1.21.1        |Manifest: NOSIGNATURE         camera-neoforge-1.21.1-1.0.19.jar                 |Camera Mod                    |camera                        |1.21.1-1.0.19       |Manifest: NOSIGNATURE         Cardiac-NEOFORGE-0.5.3.3+1.21.jar                 |Cardiac                       |cardiac                       |0.5.3.3             |Manifest: NOSIGNATURE         catalogue-neoforge-1.21.1-1.11.0.jar              |Catalogue                     |catalogue                     |1.11.0              |Manifest: NOSIGNATURE         catjammies-1.21-1.7.1.jar                         |CatJammies                    |catjammies                    |1.21-1.7.1          |Manifest: NOSIGNATURE         cfm_circuit_breaker-1.0.0.jar                     |CFM Refurnished: Circuit Break|cfm_circuit_breaker           |1.0.0               |Manifest: NOSIGNATURE         chalk-1.6.9.jar                                   |Chalk                         |chalk                         |1.6.9               |Manifest: NOSIGNATURE         charginggadgets-1.14.1.jar                        |Charging Gadgets              |charginggadgets               |1.14.1              |Manifest: NOSIGNATURE         chat_heads-0.13.13-neoforge-1.21.jar              |Chat Heads                    |chat_heads                    |0.13.13             |Manifest: NOSIGNATURE         chattoggle-5.0.1+1.21-neoforge.jar                |Chat Toggle                   |chattoggle                    |5.0.1+1.21          |Manifest: NOSIGNATURE         chatnotify-neoforge-2.4.2+1.21.jar                |ChatNotify                    |chatnotify                    |2.4.2+1.21          |Manifest: NOSIGNATURE         cherishedworlds-neoforge-10.1.0+1.21.1.jar        |Cherished Worlds              |cherishedworlds               |10.1.0+1.21.1       |Manifest: NOSIGNATURE         chipped-neoforge-1.21.1-4.0.2.jar                 |Chipped                       |chipped                       |4.0.2               |Manifest: NOSIGNATURE         chisel_chipped_integration-v1.3.7-1.21.1.jar      |Chisel                        |chisel_chipped_integration    |1.3.6-1.21.1        |Manifest: NOSIGNATURE         [neoforge]ctov-3.5.6.jar                          |ChoiceTheorem's Overhauled Vil|ctov                          |3.5.6               |Manifest: NOSIGNATURE         Chunky-1.4.16.jar                                 |Chunky                        |chunky                        |1.4.16              |Manifest: NOSIGNATURE         ChunkyBorder-1.2.18.jar                           |ChunkyBorder                  |chunkyborder                  |1.2.18              |Manifest: NOSIGNATURE         cleanswing-1.9.jar                                |Clean Swing                   |cleanswing                    |1.9                 |Manifest: NOSIGNATURE         clickadv-1.21-3.8.jar                             |Clickable Advancements mod    |clickadv                      |3.8                 |Manifest: NOSIGNATURE         clientcrafting-1.21-1.8.jar                       |clientcrafting mod            |clientcrafting                |1.8                 |Manifest: NOSIGNATURE         cloth-config-15.0.140-neoforge.jar                |Cloth Config v15 API          |cloth_config                  |15.0.140            |Manifest: NOSIGNATURE         Clumps-neoforge-1.21.1-19.0.0.1.jar               |Clumps                        |clumps                        |19.0.0.1            |Manifest: NOSIGNATURE         CMDCam_NEOFORGE_v2.2.1_mc1.21.1.jar               |CMDCam                        |cmdcam                        |2.2.1               |Manifest: NOSIGNATURE         Cobblemon-neoforge-1.6.1+1.21.1.jar               |Cobblemon                     |cobblemon                     |1.6.1+1.21.1        |Manifest: NOSIGNATURE         cobblemon-capturexp-1.6-neoforge-1.0.1.jar        |Cobblemon Capture XP          |capture_xp                    |1.6-neoforge-1.0.1  |Manifest: NOSIGNATURE         cobblemonchallenge-neoforge-2.1.0.jar             |Cobblemon Challenge           |cobblemonchallenge            |2.1.0               |Manifest: NOSIGNATURE         CobblemonExtras-neoforge-1.4.2.jar                |Cobblemon Extras Forge Sidemod|cobblemonextras               |1.0.0               |Manifest: NOSIGNATURE         fightorflight-neoforge-0.7.6.jar                  |Cobblemon Fight or Flight     |fightorflight                 |0.7.6               |Manifest: NOSIGNATURE         CobblemonMoveInspector-neoforge-1.2.0.jar         |Cobblemon Move Inspector      |cobblemon_move_inspector      |1.2.0               |Manifest: NOSIGNATURE         cobblemonoutbreaks-neoforge-1.0.0-1.21.1.jar      |Cobblemon Outbreaks           |cobblemonoutbreaks            |1.0.0-1.21.1        |Manifest: NOSIGNATURE         cobblemon_quests-[1.21.1]-neoforge-1.1.12.jar     |Cobblemon Quests              |cobblemon_quests              |1.1.12              |Manifest: NOSIGNATURE         cobblemon-spawn-notification-1.6-neoforge-1.0.1.ja|Cobblemon Spawn Notification  |spawn_notification            |1.6-neoforge-1.0.1  |Manifest: NOSIGNATURE         tbcs-neoforge-1.21.1-0.10.2-beta.jar              |Cobblemon Trainer Battle Comma|tbcs                          |0.10.2-beta         |Manifest: NOSIGNATURE         Cobblemon-Utility+-neoforge-1.5.jar               |Cobblemon Utility+            |cobblemon_utility             |1.5                 |Manifest: NOSIGNATURE         cobbleride-neoforge-0.2.2+1.21.1.jar              |Cobblemon: Ride On!           |cobbleride                    |0.2.2+1.21.1        |Manifest: NOSIGNATURE         cobblemonintegrations-neoforge-1.21.1-1.1.2.jar   |CobblemonIntegrations         |cobblemonintegrations         |1.1.2               |Manifest: NOSIGNATURE         cobblenav-neoforge-2.1.0.jar                      |Cobblenav                     |cobblenav                     |2.1.0               |Manifest: NOSIGNATURE         Cobblepedia-NeoForge-0.7.0.jar                    |Cobblepedia                   |cobblepedia                   |0.7.0               |Manifest: NOSIGNATURE         Cobbreeding-neoforge-1.8.9.jar                    |Cobbreeding                   |cobbreeding                   |1.8.9               |Manifest: NOSIGNATURE         cobweb-neoforge-1.21-1.3.3.jar                    |Cobweb                        |cobweb                        |1.3.3               |Manifest: NOSIGNATURE         CodeChickenLib-1.21.1-4.6.0.521.jar               |CodeChicken Lib               |codechickenlib                |4.6.0.521           |Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71         collective-1.21.1-7.94.jar                        |Collective                    |collective                    |7.94                |Manifest: NOSIGNATURE         collectorsalbum-neoforge-1.21.1-2.1.6.jar         |Collector's Album             |collectorsalbum               |2.1.6               |Manifest: NOSIGNATURE         colorfulhearts-neoforge-1.21.1-10.3.8.jar         |Colorful Hearts               |colorfulhearts                |10.3.8              |Manifest: NOSIGNATURE         comforts-neoforge-9.0.3+1.21.1.jar                |Comforts                      |comforts                      |9.0.3+1.21.1        |Manifest: NOSIGNATURE         common-networking-neoforge-1.0.18-1.21.1.jar      |Common Networking             |commonnetworking              |1.0.18-1.21.1       |Manifest: NOSIGNATURE         compacthelpcommand-1.21.1-2.8.jar                 |Compact Help Command          |compacthelpcommand            |2.8                 |Manifest: NOSIGNATURE         condensed_creative-3.4.1+1.21-neoforge.jar        |Condensed Creative            |condensed_creative            |3.4.1+1.21          |Manifest: NOSIGNATURE         configuration-neoforge-1.21.1-3.1.0.jar           |Configuration                 |configuration                 |3.1.0               |Manifest: NOSIGNATURE         configured-neoforge-1.21.1-2.6.0.jar              |Configured                    |configured                    |2.6.0               |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         connectivity-1.21.1-7.1.jar                       |Connectivity Mod              |connectivity                  |7.1                 |Manifest: NOSIGNATURE         Controlling-neoforge-1.21.1-19.0.4.jar            |Controlling                   |controlling                   |19.0.4              |Manifest: NOSIGNATURE         convenientcurioscontainer-2.0.jar                 |Convenient Curios Container   |convenientcurioscontainer     |2.0                 |Manifest: NOSIGNATURE         cookingforblockheads-neoforge-1.21.1-21.1.12.jar  |Cooking for Blockheads        |cookingforblockheads          |21.1.12             |Manifest: NOSIGNATURE         coolcatlib-neoforge-1.21-1.1.0.jar                |CoolCatLib                    |coolcatlib                    |1.1.0               |Manifest: NOSIGNATURE         Corgilib-NeoForge-1.21.1-5.0.0.3.jar              |CorgiLib                      |corgilib                      |5.0.0.3             |Manifest: NOSIGNATURE         coroutil-neoforge-1.21.0-1.3.8.jar                |CoroUtil                      |coroutil                      |1.21.0-1.3.8        |Manifest: NOSIGNATURE         cosmeticarmorreworked-1.21.1-v1-neoforge.jar      |CosmeticArmorReworked         |cosmeticarmorreworked         |1.21.1-v1-neoforge  |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         CosmeticArmours - 1.5.1.0 - 1.21.1 - NeoForge.jar |CosmeticArmours               |cosmeticarmoursmod            |1.5.1.0             |Manifest: NOSIGNATURE         craftingtweaks-neoforge-1.21.1-21.1.5.jar         |Crafting Tweaks               |craftingtweaks                |21.1.5              |Manifest: NOSIGNATURE         crash_assistant-neoforge.jar                      |Crash Assistant               |crash_assistant               |1.4.3               |Manifest: NOSIGNATURE         crashexploitfixer-neoforge-1.1.0+1.21.jar         |CrashExploitFixer             |crashexploitfixer             |1.1.0               |Manifest: NOSIGNATURE         CraterLib-NeoForge-1.21-2.1.3.jar                 |CraterLib                     |craterlib                     |2.1.3               |Manifest: NOSIGNATURE         create-1.21.1-6.0.4.jar                           |Create                        |create                        |6.0.4               |Manifest: NOSIGNATURE         createcontraptionterminals-1.21-1.2.0.jar         |Create Contraption Terminals  |createcontraptionterminals    |0.0NONE             |Manifest: NOSIGNATURE         Create Encased-1.21.1-1.7.1.jar                   |Create Encased                |createcasing                  |1.7.1               |Manifest: NOSIGNATURE         create_ltab-2.6.2.jar                             |Create Let The Adventure Begin|create_ltab                   |2.6.2               |Manifest: NOSIGNATURE         bellsandwhistles-0.4.7-1.21.1.jar                 |Create: Bells & Whistles      |bellsandwhistles              |0.4.7-1.21.1        |Manifest: NOSIGNATURE         createframed-1.21.1-1.6.2.jar                     |Create: Framed                |createframed                  |1.6.2               |Manifest: NOSIGNATURE         create_pattern_schematics-2.0.5.jar               |Create: Pattern Schematics    |create_pattern_schematics     |2.0.5               |Manifest: NOSIGNATURE         create_ultimate_factory-1.9.0-neoforge-1.21.1.jar |Create: Ultimate Factory      |create_ultimate_factory       |1.9.0               |Manifest: NOSIGNATURE         CreativeCore_NEOFORGE_v2.12.32_mc1.21.1.jar       |CreativeCore                  |creativecore                  |2.12.32             |Manifest: NOSIGNATURE         croptopia_1.21.1_NEO-FORGE-4.1.0.jar              |Croptopia                     |croptopia                     |4.1.0               |Manifest: NOSIGNATURE         crystalix-1.2.2_neoforge_1.21.1.jar               |Crystalix                     |crystalix                     |1.2.2               |Manifest: NOSIGNATURE         Cucumber-1.21.1-8.0.10.jar                        |Cucumber Library              |cucumber                      |8.0.10              |Manifest: NOSIGNATURE         cupboard-1.21-2.9.jar                             |Cupboard mod                  |cupboard                      |2.9                 |Manifest: NOSIGNATURE         curios-neoforge-9.3.1+1.21.1.jar                  |Curios API                    |curios                        |9.3.1+1.21.1        |Manifest: NOSIGNATURE         cyanide-neoforge-1.21.1-5.0.0.jar                 |Cyanide                       |cyanide                       |5.0.0               |Manifest: NOSIGNATURE         darkcap-neoforge-1.21-1.1.9.jar                   |DarkCap                       |darkcap                       |1.1.9               |Manifest: NOSIGNATURE         darkdeath-neoforge-1.21-1.1.7.jar                 |DarkDeath                     |darkdeath                     |1.1.7               |Manifest: NOSIGNATURE         darksleep-neoforge-1.21.1-1.0.1.jar               |DarkSleep                     |darksleep                     |1.0.1               |Manifest: NOSIGNATURE         darktimer-neoforge-1.21-1.2.3.jar                 |DarkTimer                     |darktimer                     |1.2.3               |Manifest: NOSIGNATURE         Data_Anchor-neoforge-1.21.1-2.0.0.4.jar           |Data Anchor                   |dataanchor                    |2.0.0.4             |Manifest: NOSIGNATURE         defaultoptions-neoforge-1.21.1-21.1.2.jar         |Default Options               |defaultoptions                |21.1.2              |Manifest: NOSIGNATURE         desiredservers-neoforge-1.21.1-1.6.0.jar          |Desired Servers               |desiredservers                |1.6.0               |Manifest: NOSIGNATURE         despawntweaks-neoforge-1.0.0-1.21.1.jar           |Despawn Tweaks                |despawntweaks                 |1.0.0               |Manifest: NOSIGNATURE         dimdungeons-200-neoforge-1.21.0.jar               |Dimensional Dungeons          |dimdungeons                   |200                 |Manifest: NOSIGNATURE         distraction_free_recipes-neoforge-1.2.1-1.21.1.jar|Distraction Free Recipes (EMI)|distraction_free_recipes      |1.2.1               |Manifest: NOSIGNATURE         domum-ornamentum-1.0.213-snapshot-main.jar        |Domum Ornamentum              |domum_ornamentum              |1.0.213-snapshot    |Manifest: NOSIGNATURE         drippyloadingscreen_neoforge_3.0.11_MC_1.21.1.jar |Drippy Loading Screen         |drippyloadingscreen           |3.0.11              |Manifest: NOSIGNATURE         DungeonCrawl-NeoForge-1.21-2.3.15.jar             |Dungeon Crawl                 |dungeoncrawl                  |2.3.15              |Manifest: NOSIGNATURE         durabilitytooltip-1.1.5-neoforge-mc1.21.jar       |Durability Tooltip            |durabilitytooltip             |1.1.5               |Manifest: NOSIGNATURE         dynamic-fps-3.9.0+minecraft-1.21.0-neoforge.jar   |Dynamic FPS                   |dynamic_fps                   |3.9.0               |Manifest: NOSIGNATURE         e4mc_minecraft-neoforge-5.3.0.jar                 |e4mc                          |e4mc_minecraft                |5.3.0               |Manifest: NOSIGNATURE         elevatorid-neoforge-1.21.1-1.11.4.jar             |ElevatorMod                   |elevatorid                    |1.21.1-1.11.4       |Manifest: NOSIGNATURE         elytra_physics-neoforge-2.1_mc1.20.5+.jar         |Elytra physics                |elytra_physics                |2.1                 |Manifest: NOSIGNATURE         elytraslot-neoforge-9.0.2+1.21.1.jar              |Elytra Slot                   |elytraslot                    |9.0.2+1.21.1        |Manifest: NOSIGNATURE         emi-1.1.20+1.21.1+neoforge.jar                    |EMI                           |emi                           |1.1.20+1.21.1+neofor|Manifest: NOSIGNATURE         emi_enchanting-0.1.2+1.21+neoforge.jar            |EMI Enchanting                |emi_enchanting                |0.1.2+1.21+neoforge |Manifest: NOSIGNATURE         emi_loot-0.7.5+1.21+neoforge.jar                  |EMI Loot                      |emi_loot                      |0.7.5+1.21+neoforge |Manifest: NOSIGNATURE         emi_ores-1.2+1.21.1+neoforge.jar                  |EMI Ores                      |emi_ores                      |1.2+1.21.1+neoforge |Manifest: NOSIGNATURE         EMIProfessions-neoforge-1.21.1-1.0.3.jar          |EMI Professions (EMIP)        |emiprofessions                |1.0.3               |Manifest: NOSIGNATURE         emotecraft-for-MC1.21.1-2.4.9-neoforge.jar        |Emotecraft                    |emotecraft                    |2.4.9               |Manifest: NOSIGNATURE         enchdesc-neoforge-1.21.1-21.1.5.jar               |EnchantmentDescriptions       |enchdesc                      |21.1.5              |Manifest: NOSIGNATURE         endrem-neoforge-1.21.X-6.0.2.jar                  |End Remastered                |endrem                        |6.0.2               |Manifest: NOSIGNATURE         com.enderio.endercore-7.1.7-alpha.jar             |Ender Core                    |endercore                     |7.1.7-alpha         |Manifest: NOSIGNATURE         enderio-7.1.7-alpha.jar                           |Ender IO                      |enderio                       |7.1.7-alpha         |Manifest: NOSIGNATURE         com.enderio.enderio-armory-7.1.7-alpha.jar        |Ender IO Armory               |enderio_armory                |7.1.7-alpha         |Manifest: NOSIGNATURE         com.enderio.enderio-base-7.1.7-alpha.jar          |Ender IO Base                 |enderio_base                  |7.1.7-alpha         |Manifest: NOSIGNATURE         com.enderio.enderio-conduits-7.1.7-alpha.jar      |Ender IO Conduits             |enderio_conduits              |7.1.7-alpha         |Manifest: NOSIGNATURE         com.enderio.enderio-machines-7.1.7-alpha.jar      |Ender IO Machines             |enderio_machines              |7.1.7-alpha         |Manifest: NOSIGNATURE         com.enderio.enderio-conduits-modded-7.1.7-alpha.ja|Ender IO Modded Conduits      |enderio_conduits_modded       |7.1.7-alpha         |Manifest: NOSIGNATURE         EnderStorage-1.21.1-2.13.0.191.jar                |EnderStorage                  |enderstorage                  |2.13.0.191          |Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71         Engineers Delight 1.21.1 neoforge R.1.4.jar       |Engineers Delight             |tmted                         |1.4.1               |Manifest: NOSIGNATURE         Enhanced-Celestials-NeoForge-6.0.2.0.jar          |Enhanced Celestials           |enhancedcelestials            |6.0.2.0             |Manifest: NOSIGNATURE         entity_model_features_neoforge_1.21.1-2.4.1.jar   |Entity Model Features         |entity_model_features         |2.4.1               |Manifest: NOSIGNATURE         entity_texture_features_neoforge_1.21.1-6.2.9.jar |Entity Texture Features       |entity_texture_features       |6.2.9               |Manifest: NOSIGNATURE         EpheroLib-1.21.1-NEO-FORGE-1.2.0.jar              |EpheroLib                     |epherolib                     |1.2.0               |Manifest: NOSIGNATURE         EquipmentCompare-1.21-neoforge-1.3.12.jar         |Equipment Compare             |equipmentcompare              |1.3.12              |Manifest: NOSIGNATURE         EuphoriaPatcher-1.5.2-r5.4-neoforge.jar           |Euphoria Patcher              |euphoria_patcher              |1.5.2-r5.4-neoforge |Manifest: NOSIGNATURE         expandability-neoforge-12.0.0.jar                 |ExpandAbility                 |expandability                 |12.0.0              |Manifest: NOSIGNATURE         Explorify v1.6.2 f10-48.jar                       |Explorify                     |explorify                     |1.6.2               |Manifest: NOSIGNATURE         ExtendedAE-1.21-2.2.6-neoforge.jar                |ExtendedAE                    |extendedae                    |1.21-2.2.6-neoforge |Manifest: NOSIGNATURE         extradelight-2.4.1.jar                            |Extra Delight                 |extradelight                  |2.4.1               |Manifest: NOSIGNATURE         ExtremeReactors2-1.21.1-2.4.21.jar                |Extreme Reactors              |bigreactors                   |1.21.1-2.4.21       |Manifest: NOSIGNATURE         ExtremeSoundMuffler-3.49_NeoForge-1.21.jar        |Extreme Sound Muffler         |extremesoundmuffler           |3.49                |Manifest: NOSIGNATURE         fancymenu_neoforge_3.4.6_MC_1.21.1.jar            |FancyMenu                     |fancymenu                     |3.4.6               |Manifest: NOSIGNATURE         farmers_croptopia-1.21.1-1.1.2.jar                |Farmer's Croptopia            |farmers_croptopia             |1.1.2               |Manifest: NOSIGNATURE         farmers-cutting-oh-the-biomes-weve-gone-1.21.1-2.1|Farmer's Cutting: Oh The Biome|mr_farmers_cuttingohthebiomesw|1.21.1-2.1-neoforge |Manifest: NOSIGNATURE         farmers-cutting-regions-unexplored-1.21-1.1a-neofo|Farmer's Cutting: Regions Unex|mr_farmers_cuttingregionsunexp|1.21-1.1a-neoforge  |Manifest: NOSIGNATURE         FarmersDelight-1.21.1-1.2.7.jar                   |Farmer's Delight              |farmersdelight                |1.2.7               |Manifest: NOSIGNATURE         FarmersStructures-1.0.1-1.21.1_neoforge.jar       |FarmersStructures             |farmers_structures            |1.0.0               |Manifest: NOSIGNATURE         farmingforblockheads-neoforge-1.21.1-21.1.7.jar   |Farming for Blockheads        |farmingforblockheads          |21.1.7              |Manifest: NOSIGNATURE         farsight-1.21-3.8.jar                             |Farsight mod                  |farsight_view                 |3.8                 |Manifest: NOSIGNATURE         fast-ip-ping-v1.0.5-mc1.21.1-neoforge.jar         |Fast IP Ping                  |fastipping                    |1.0.5               |Manifest: NOSIGNATURE         fastpaintings-1.21-1.2.15-neoforge.jar            |Fast Paintings                |fastpaintings                 |1.21-1.2.15         |Manifest: NOSIGNATURE         FastWorkbench-1.21-9.1.2.jar                      |Fast Workbench                |fastbench                     |9.1.2               |Manifest: NOSIGNATURE         fastasyncworldsave-1.21-2.4.jar                   |fastasyncworldsave mod        |fastasyncworldsave            |2.4                 |Manifest: NOSIGNATURE         FastFurnace-1.21.1-9.0.0.jar                      |FastFurnace                   |fastfurnace                   |9.0.0               |Manifest: NOSIGNATURE         Feature-Recycler-neoforge-2.0.0.jar               |Feature Recycler              |featurerecycler               |2.0.0               |Manifest: NOSIGNATURE         ferritecore-7.0.2-neoforge.jar                    |Ferrite Core                  |ferritecore                   |7.0.2               |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         flickerfix-1.21.0.jar                             |FlickerFix                    |flickerfix                    |4.0.1               |Manifest: NOSIGNATURE         FluxNetworks-1.21.1-8.0.0.jar                     |Flux Networks                 |fluxnetworks                  |8.0.0               |Manifest: NOSIGNATURE         flywheel-neoforge-1.21.1-1.0.2.jar                |Flywheel                      |flywheel                      |1.0.2               |Manifest: NOSIGNATURE         forgified-fabric-api-0.107.0+2.0.25+1.21.1.jar    |Forgified Fabric API          |fabric_api                    |0.107.0+2.0.25+1.21.|Manifest: NOSIGNATURE         fabric-api-base-0.4.42+d1308ded19.jar             |Forgified Fabric API Base     |fabric_api_base               |0.4.42+d1308ded19   |Manifest: NOSIGNATURE         fabric-api-lookup-api-v1-1.6.69+c21168c319.jar    |Forgified Fabric API Lookup AP|fabric_api_lookup_api_v1      |1.6.69+c21168c319   |Manifest: NOSIGNATURE         fabric-biome-api-v1-13.0.30+1e62d33c19.jar        |Forgified Fabric Biome API (v1|fabric_biome_api_v1           |13.0.30+1e62d33c19  |Manifest: NOSIGNATURE         fabric-block-api-v1-1.0.22+a6e994cd19.jar         |Forgified Fabric Block API (v1|fabric_block_api_v1           |1.0.22+a6e994cd19   |Manifest: NOSIGNATURE         fabric-blockrenderlayer-v1-1.1.52+b089b4bd19.jar  |Forgified Fabric BlockRenderLa|fabric_blockrenderlayer_v1    |1.1.52+b089b4bd19   |Manifest: NOSIGNATURE         fabric-block-view-api-v2-1.0.10+9afaaf8c19.jar    |Forgified Fabric BlockView API|fabric_block_view_api_v2      |1.0.10+9afaaf8c19   |Manifest: NOSIGNATURE         fabric-client-tags-api-v1-1.1.15+e053909619.jar   |Forgified Fabric Client Tags  |fabric_client_tags_api_v1     |1.1.15+e053909619   |Manifest: NOSIGNATURE         fabric-command-api-v2-2.2.28+36d727be19.jar       |Forgified Fabric Command API (|fabric_command_api_v2         |2.2.28+36d727be19   |Manifest: NOSIGNATURE         fabric-content-registries-v0-8.0.17+0a0c14ff19.jar|Forgified Fabric Content Regis|fabric_content_registries_v0  |8.0.17+0a0c14ff19   |Manifest: NOSIGNATURE         fabric-convention-tags-v1-2.1.1+7f945d5b19.jar    |Forgified Fabric Convention Ta|fabric_convention_tags_v1     |2.1.1+7f945d5b19    |Manifest: NOSIGNATURE         fabric-convention-tags-v2-2.9.1+231468e519.jar    |Forgified Fabric Convention Ta|fabric_convention_tags_v2     |2.9.1+231468e519    |Manifest: NOSIGNATURE         fabric-data-attachment-api-v1-1.2.0+7330bc1b19.jar|Forgified Fabric Data Attachme|fabric_data_attachment_api_v1 |1.2.0+7330bc1b19    |Manifest: NOSIGNATURE         fabric-data-generation-api-v1-20.2.22+2d91a6db19.j|Forgified Fabric Data Generati|fabric_data_generation_api_v1 |20.2.22+2d91a6db19  |Manifest: NOSIGNATURE         fabric-entity-events-v1-1.7.0+1af6e62419.jar      |Forgified Fabric Entity Events|fabric_entity_events_v1       |1.7.0+1af6e62419    |Manifest: NOSIGNATURE         fabric-events-interaction-v0-0.7.13+7b71cc1619.jar|Forgified Fabric Events Intera|fabric_events_interaction_v0  |0.7.13+7b71cc1619   |Manifest: NOSIGNATURE         fabric-game-rule-api-v1-1.0.53+36d727be19.jar     |Forgified Fabric Game Rule API|fabric_game_rule_api_v1       |1.0.53+36d727be19   |Manifest: NOSIGNATURE         fabric-gametest-api-v1-2.0.5+29f188ce19.jar       |Forgified Fabric Game Test API|fabric_gametest_api_v1        |2.0.5+29f188ce19    |Manifest: NOSIGNATURE         fabric-item-api-v1-11.1.1+57cdfa8219.jar          |Forgified Fabric Item API (v1)|fabric_item_api_v1            |11.1.1+57cdfa8219   |Manifest: NOSIGNATURE         fabric-item-group-api-v1-4.1.6+e324903319.jar     |Forgified Fabric Item Group AP|fabric_item_group_api_v1      |4.1.6+e324903319    |Manifest: NOSIGNATURE         fabric-key-binding-api-v1-1.0.47+62cc7ce119.jar   |Forgified Fabric Key Binding A|fabric_key_binding_api_v1     |1.0.47+62cc7ce119   |Manifest: NOSIGNATURE         fabric-lifecycle-events-v1-2.4.0+36b6b86a19.jar   |Forgified Fabric Lifecycle Eve|fabric_lifecycle_events_v1    |2.4.0+36b6b86a19    |Manifest: NOSIGNATURE         fabric-loot-api-v2-3.0.15+a3ee712d19.jar          |Forgified Fabric Loot API (v2)|fabric_loot_api_v2            |3.0.15+a3ee712d19   |Manifest: NOSIGNATURE         fabric-loot-api-v3-1.0.3+333dfad919.jar           |Forgified Fabric Loot API (v3)|fabric_loot_api_v3            |1.0.3+333dfad919    |Manifest: NOSIGNATURE         fabric-message-api-v1-6.0.13+e053909619.jar       |Forgified Fabric Message API (|fabric_message_api_v1         |6.0.13+e053909619   |Manifest: NOSIGNATURE         fabric-model-loading-api-v1-2.0.0+986ae77219.jar  |Forgified Fabric Model Loading|fabric_model_loading_api_v1   |2.0.0+986ae77219    |Manifest: NOSIGNATURE         fabric-networking-api-v1-4.3.0+0d25d43e19.jar     |Forgified Fabric Networking AP|fabric_networking_api_v1      |4.3.0+0d25d43e19    |Manifest: NOSIGNATURE         fabric-object-builder-api-v1-15.2.1+cc242efd19.jar|Forgified Fabric Object Builde|fabric_object_builder_api_v1  |15.2.1+cc242efd19   |Manifest: NOSIGNATURE         fabric-particles-v1-4.0.2+824f924c19.jar          |Forgified Fabric Particles (v1|fabric_particles_v1           |4.0.2+824f924c19    |Manifest: NOSIGNATURE         fabric-recipe-api-v1-5.0.13+59440bcc19.jar        |Forgified Fabric Recipe API (v|fabric_recipe_api_v1          |5.0.13+59440bcc19   |Manifest: NOSIGNATURE         fabric-registry-sync-v0-5.1.3+0c9b5b5419.jar      |Forgified Fabric Registry Sync|fabric_registry_sync_v0       |5.1.3+0c9b5b5419    |Manifest: NOSIGNATURE         fabric-renderer-indigo-1.7.0+acb05a3919.jar       |Forgified Fabric Renderer - In|fabric_renderer_indigo        |1.7.0+acb05a3919    |Manifest: NOSIGNATURE         fabric-renderer-api-v1-3.4.0+acb05a3919.jar       |Forgified Fabric Renderer API |fabric_renderer_api_v1        |3.4.0+acb05a3919    |Manifest: NOSIGNATURE         fabric-rendering-v1-5.0.5+077ba95f19.jar          |Forgified Fabric Rendering (v1|fabric_rendering_v1           |5.0.5+077ba95f19    |Manifest: NOSIGNATURE         fabric-rendering-data-attachment-v1-0.3.48+73761d2|Forgified Fabric Rendering Dat|fabric_rendering_data_attachme|0.3.48+73761d2e19   |Manifest: NOSIGNATURE         fabric-rendering-fluids-v1-3.1.6+857185bc19.jar   |Forgified Fabric Rendering Flu|fabric_rendering_fluids_v1    |3.1.6+857185bc19    |Manifest: NOSIGNATURE         fabric-resource-conditions-api-v1-4.3.0+edeecbd819|Forgified Fabric Resource Cond|fabric_resource_conditions_api|4.3.0+edeecbd819    |Manifest: NOSIGNATURE         fabric-resource-loader-v0-1.3.1+4ea8954419.jar    |Forgified Fabric Resource Load|fabric_resource_loader_v0     |1.3.1+4ea8954419    |Manifest: NOSIGNATURE         fabric-screen-api-v1-2.0.25+b282c4bb19.jar        |Forgified Fabric Screen API (v|fabric_screen_api_v1          |2.0.25+b282c4bb19   |Manifest: NOSIGNATURE         fabric-screen-handler-api-v1-1.3.87+8dbc56dd19.jar|Forgified Fabric Screen Handle|fabric_screen_handler_api_v1  |1.3.87+8dbc56dd19   |Manifest: NOSIGNATURE         fabric-sound-api-v1-1.0.23+10b84f8419.jar         |Forgified Fabric Sound API (v1|fabric_sound_api_v1           |1.0.23+10b84f8419   |Manifest: NOSIGNATURE         fabric-transfer-api-v1-5.4.1+628bf5e919.jar       |Forgified Fabric Transfer API |fabric_transfer_api_v1        |5.4.1+628bf5e919    |Manifest: NOSIGNATURE         fabric-transitive-access-wideners-v1-6.1.0+0df3143|Forgified Fabric Transitive Ac|fabric_transitive_access_widen|6.1.0+0df3143b19    |Manifest: NOSIGNATURE         formations-1.0.3-neoforge-mc1.21.jar              |Formations                    |formations                    |1.0.3               |Manifest: NOSIGNATURE         formationsnether-1.0.5-mc1.21+.jar                |Formations Nether             |formationsnether              |1.0.5               |Manifest: NOSIGNATURE         formationsoverworld-1.0.4-mc1.21+.jar             |Formations Overworld          |formationsoverworld           |1.0.4               |Manifest: NOSIGNATURE         FramedBlocks-10.3.1.jar                           |FramedBlocks                  |framedblocks                  |10.3.1              |Manifest: NOSIGNATURE         framework-neoforge-1.21.1-0.9.4.jar               |Framework                     |framework                     |0.9.4               |Manifest: NOSIGNATURE         ftb-chunks-neoforge-2101.1.8.jar                  |FTB Chunks                    |ftbchunks                     |2101.1.8            |Manifest: NOSIGNATURE         ftb-essentials-neoforge-2101.1.6.jar              |FTB Essentials                |ftbessentials                 |2101.1.6            |Manifest: NOSIGNATURE         ftb-filter-system-neoforge-21.1.0.jar             |FTB Filter System             |ftbfiltersystem               |21.1.0              |Manifest: NOSIGNATURE         ftbjeiextras-21.1.5.jar                           |FTB Jei Extras                |ftbjeiextras                  |21.1.5              |Manifest: NOSIGNATURE         ftb-library-neoforge-2101.1.12.jar                |FTB Library                   |ftblibrary                    |2101.1.12           |Manifest: NOSIGNATURE         ftb-pause-menu-api-21.1.1.jar                     |FTB Pause Menu API            |ftbpmapi                      |21.1.1              |Manifest: NOSIGNATURE         ftb-quests-neoforge-2101.1.6.jar                  |FTB Quests                    |ftbquests                     |2101.1.6            |Manifest: NOSIGNATURE         ftb-ranks-neoforge-2101.1.2.jar                   |FTB Ranks                     |ftbranks                      |2101.1.2            |Manifest: NOSIGNATURE         ftb-teams-neoforge-2101.1.2.jar                   |FTB Teams                     |ftbteams                      |2101.1.2            |Manifest: NOSIGNATURE         ftb-ultimine-neoforge-2101.1.1.jar                |FTB Ultimine                  |ftbultimine                   |2101.1.1            |Manifest: NOSIGNATURE         ultimine_addition-neoforge-1.21-1.0.3.jar         |FTB Ultimine Addition         |ultimine_addition             |1.0.3               |Manifest: NOSIGNATURE         ftb-xmod-compat-neoforge-21.1.3.jar               |FTB XMod Compat               |ftbxmodcompat                 |21.1.3              |Manifest: NOSIGNATURE         fuelgoeshere-1.21.1-1.2.0.jar                     |Fuel Goes Here                |fuelgoeshere                  |1.21.1-1.2.0        |Manifest: NOSIGNATURE         FuelInfo-2.1+1.21.jar                             |FuelInfo                      |fuelinfo                      |2.1+1.21            |Manifest: NOSIGNATURE         functionalstorage-1.21.1-1.4.2.jar                |Functional Storage            |functionalstorage             |1.21.1-1.4.2        |Manifest: NOSIGNATURE         fusion-1.2.5-neoforge-mc1.21.jar                  |Fusion                        |fusion                        |1.2.5               |Manifest: NOSIGNATURE         fzzy_config-0.6.7+1.21+neoforge.jar               |Fzzy Config                   |fzzy_config                   |0.6.7+1.21+neoforge |Manifest: NOSIGNATURE         GatewaysToEternity-1.21.1-5.0.2.jar               |Gateways To Eternity          |gateways                      |5.0.2               |Manifest: NOSIGNATURE         geckolib-neoforge-1.21.1-4.7.5.1.jar              |GeckoLib 4                    |geckolib                      |4.7.5.1             |Manifest: NOSIGNATURE         Glodium-1.21-2.2-neoforge.jar                     |Glodium                       |glodium                       |1.21-2.2-neoforge   |Manifest: NOSIGNATURE         goldenhopper-neoforge-1.21.1-1.5.6.jar            |Golden Hopper                 |goldenhopper                  |1.5.6               |Manifest: NOSIGNATURE         gpumemleakfix-1.21-1.8.jar                        |Gpu memory leak fix           |gpumemleakfix                 |1.8                 |Manifest: NOSIGNATURE         greenhouseconfig-1.0.0+1.21.1-neoforge.jar        |Greenhouse Config             |greenhouseconfig              |1.0.0+1.21.1        |Manifest: NOSIGNATURE         greenhouseconfig_night_config-1.0.0.jar           |Greenhouse Config - Night Conf|greenhouseconfig_night_config |1.0.0               |Manifest: NOSIGNATURE         greenhouseconfig_toml-1.0.0.jar                   |Greenhouse Config - TOML      |greenhouseconfig_toml         |1.0.0               |Manifest: NOSIGNATURE         guideme-21.1.6.jar                                |GuideME                       |guideme                       |21.1.6              |Manifest: NOSIGNATURE         handcrafted-neoforge-1.21.1-4.0.3.jar             |Handcrafted                   |handcrafted                   |4.0.3               |Manifest: NOSIGNATURE         HopoBetterMineshaft-[1.21-1.21.3]-1.3.0.jar       |HopoBetterMineshaft           |hopo                          |1.3.0               |Manifest: NOSIGNATURE         HopoBetterUnderwaterRuins-[1.21.1-1.21.3]-1.2.1.ja|HopoBetterUnderwaterRuins     |hopour                        |1.2.1               |Manifest: NOSIGNATURE         HostileNeuralNetworks-1.21.1-6.1.3.jar            |Hostile Neural Networks       |hostilenetworks               |6.1.3               |Manifest: NOSIGNATURE         imfast-NEOFORGE-1.0.2.jar                         |I'm Fast                      |imfast                        |1.0.2               |Manifest: NOSIGNATURE         Icarus-NeoForge-4.5.0.jar                         |Icarus                        |icarus                        |4.5.0               |Manifest: NOSIGNATURE         Iceberg-1.21.1-neoforge-1.2.9.2.jar               |Iceberg                       |iceberg                       |1.2.9.2             |Manifest: NOSIGNATURE         ImmediatelyFast-NeoForge-1.6.2+1.21.1.jar         |ImmediatelyFast               |immediatelyfast               |1.6.2+1.21.1        |Manifest: NOSIGNATURE         immersive_aircraft-1.2.2+1.21.1-neoforge.jar      |Immersive Aircraft            |immersive_aircraft            |1.2.2+1.21.1        |Manifest: NOSIGNATURE         ImmersiveEngineering-1.21.1-12.1.0-185.jar        |Immersive Engineering         |immersiveengineering          |12.1.0-185          |Manifest: NOSIGNATURE         improved_village_placement_1.0.0.jar              |Improved Village Placement    |improved_village_placement    |1.0.0               |Manifest: NOSIGNATURE         industrialforegoing-1.21-3.6.24.jar               |Industrial Foregoing          |industrialforegoing           |1.21-3.6.24         |Manifest: NOSIGNATURE         industrial-foregoing-souls-1.21.1-1.10.4.jar      |Industrial Foregoing Souls    |industrialforegoingsouls      |1.10.4              |Manifest: NOSIGNATURE         inventoryessentials-neoforge-1.21.1-21.1.2.jar    |Inventory Essentials          |inventoryessentials           |21.1.2              |Manifest: NOSIGNATURE         invtweaks-1.21.1-1.2.2.jar                        |Inventory Tweaks Refoxed      |invtweaks                     |1.21.1-1.2.2        |Manifest: NOSIGNATURE         iris-neoforge-1.8.8+mc1.21.1.jar                  |Iris                          |iris                          |1.8.8+mc1.21.1      |Manifest: NOSIGNATURE         iron_ender_chests-1.21.1-1.0.3.jar                |Iron Ender Chests             |iron_ender_chests             |1.21.1-1.0.3        |Manifest: NOSIGNATURE         ironfurnaces-neoforge-1.21.1-4.2.6.jar            |Iron Furnaces                 |ironfurnaces                  |4.2.6               |Manifest: NOSIGNATURE         irons_jewelry-1.21.1-1.0.11.jar                   |Iron's Gems 'n Jewelry        |irons_jewelry                 |1.21.1-1.0.11       |Manifest: NOSIGNATURE         irons_rpg_tweaks-2.1.0.jar                        |Iron's RPG Tweaks             |irons_rpg_tweaks              |2.1.0               |Manifest: NOSIGNATURE         takesapillage-neoforge-mc1.21.1-1.0.6.jar         |It Takes a Pillage Continuatio|takesapillage                 |1.0.6               |Manifest: NOSIGNATURE         itemzoom-1.21-3.0.0.jar                           |Item Zoom                     |itemzoom                      |3.0.0               |Manifest: NOSIGNATURE         Jade-1.21.1-NeoForge-15.10.0.jar                  |Jade                          |jade                          |15.10.0+neoforge    |Manifest: NOSIGNATURE         JadeAddons-1.21.1-NeoForge-6.1.0.jar              |Jade Addons                   |jadeaddons                    |6.1.0+neoforge      |Manifest: NOSIGNATURE         jamlib-neoforge-1.3.2+1.21.1.jar                  |JamLib                        |jamlib                        |1.3.2+1.21.1        |Manifest: NOSIGNATURE         jinxedlib-neoforge-1.21.1-1.0.3.jar               |JinxedLib                     |jinxedlib                     |1.0.3               |Manifest: NOSIGNATURE         trophymanager-1.21.1-2.2.4.jar                    |Jonn's Trophies               |trophymanager                 |1.21.1-2.2.4        |Manifest: NOSIGNATURE         journeymap-neoforge-1.21.1-6.0.0-beta.41.jar      |Journeymap                    |journeymap                    |1.21.1-6.0.0-beta.41|Manifest: NOSIGNATURE         journeymap-api-neoforge-2.0.0-1.21.1-SNAPSHOT.jar |JourneyMap API                |journeymap_api                |2.0.0               |Manifest: NOSIGNATURE         jmi-neoforge-1.21.1-1.8.2.jar                     |JourneyMap Integration        |jmi                           |1.21.1-1.8.2        |Manifest: NOSIGNATURE         justdirethings-1.5.4.jar                          |Just Dire Things              |justdirethings                |1.5.4               |Manifest: NOSIGNATURE         jearchaeology-1.21.1-1.1.6.jar                    |Just Enough Archaeology       |jearchaeology                 |1.21.1-1.1.6        |Manifest: NOSIGNATURE         justenoughbreeding-neoforge-1.21-1.21.1-1.5.0.jar |Just Enough Breeding          |justenoughbreeding            |1.5.0               |Manifest: NOSIGNATURE         jeed-1.21-2.2.18.jar                              |Just Enough Effects Descriptio|jeed                          |1.21-2.2.18         |Manifest: NOSIGNATURE         jeimultiblocks-1.21.1-1.0.4.jar                   |Just Enough Immersive Multiblo|jeimultiblocks                |1.0.4               |Manifest: NOSIGNATURE         JustEnoughMekanismMultiblocks-1.21.1-7.6.jar      |Just Enough Mekanism Multibloc|jei_mekanism_multiblocks      |7.6                 |Manifest: NOSIGNATURE         justmobheads-1.21.1-8.5.jar                       |Just Mob Heads                |justmobheads                  |8.5                 |Manifest: NOSIGNATURE         justplayerheads-1.21.1-4.2.jar                    |Just Player Heads             |justplayerheads               |4.2                 |Manifest: NOSIGNATURE         keybindbundles-1.2.0.jar                          |KeyBind Bundles               |keybindbundles                |1.2.0               |Manifest: NOSIGNATURE         keybindspurger-1.21.x-neoforge-1.3.3.jar          |KeybindsPurger                |keybindspurger                |1.3.3               |Manifest: NOSIGNATURE         kleeslabs-neoforge-1.21.1-21.1.3.jar              |KleeSlabs                     |kleeslabs                     |21.1.3              |Manifest: NOSIGNATURE         konkrete_neoforge_1.9.9_MC_1.21.jar               |Konkrete                      |konkrete                      |1.9.9               |Manifest: NOSIGNATURE         kffmod-5.7.0.jar                                  |Kotlin For Forge              |kotlinforforge                |5.7.0               |Manifest: NOSIGNATURE         kubejs-neoforge-2101.7.1-build.181.jar            |KubeJS                        |kubejs                        |2101.7.1-build.181  |Manifest: NOSIGNATURE         kubejs_enderio-neoforge-1.21.1-0.7.1.jar          |KubeJS EnderIO                |kubejs_enderio                |1.21.1-0.7.1        |Manifest: NOSIGNATURE         kubejs-mekanism-neoforge-2101.1.6-build.6.jar     |KubeJS Mekanism               |kubejs_mekanism               |2101.1.6-build.6    |Manifest: NOSIGNATURE         kuma-api-neoforge-21.0.5+1.21.jar                 |KumaAPI                       |kuma_api                      |21.0.5              |Manifest: NOSIGNATURE         l2core-3.0.8+1.jar                                |L2Core                        |l2core                        |3.0.8+1             |Manifest: NOSIGNATURE         L_Ender's Cataclysm-2.60-1.21.1.jar               |L_Ender's Cataclysm           |cataclysm                     |2.60-1.21.1         |Manifest: NOSIGNATURE         leaky-1.21-2.1.jar                                |leaky mod                     |leaky                         |2.1                 |Manifest: NOSIGNATURE         LegendaryTooltips-1.21-neoforge-1.4.11.jar        |Legendary Tooltips            |legendarytooltips             |1.4.11              |Manifest: NOSIGNATURE         leveltextfix-neoforge-1.21.1-21.1.3.jar           |LevelTextFix                  |leveltextfix                  |21.1.3              |Manifest: NOSIGNATURE         light-overlay-12.0.0-neoforge.jar                 |Light Overlay                 |lightoverlay                  |12.0.0              |Manifest: NOSIGNATURE         lightmanscurrency-1.21-2.2.4.5.jar                |Lightman's Currency           |lightmanscurrency             |1.21-2.2.4.5        |Manifest: NOSIGNATURE         lctech-1.21-0.2.1.15a.jar                         |Lightman's Currency Tech      |lctech                        |1.21-0.2.1.15a      |Manifest: NOSIGNATURE         lionfishapi-2.6.jar                               |lionfishapi                   |lionfishapi                   |2.6                 |Manifest: NOSIGNATURE         lithium-neoforge-0.15.0+mc1.21.1.jar              |Lithium                       |lithium                       |0.15.0+mc1.21.1     |Manifest: NOSIGNATURE         lithostitched-neoforge-1.21.1-1.4.5.jar           |Lithostitched                 |lithostitched                 |1.4.2               |Manifest: NOSIGNATURE         LittleTiles_BETA_v1.6.0-pre157_mc1.21.1.jar       |LittleTiles                   |littletiles                   |1.6.0-pre157        |Manifest: NOSIGNATURE         lmft-1.0.4+1.21-neoforge.jar                      |Load My F***ing Tags          |lmft                          |1.0.4+1.21          |Manifest: NOSIGNATURE         logbegone-neoforge-1.21.1-1.0.3.jar               |Log Begone                    |logbegone                     |1.0.3               |Manifest: NOSIGNATURE         logprot-1.21-3.5.jar                              |Logprot                       |logprot                       |3.5                 |Manifest: NOSIGNATURE         LongerChatHistory-neoforge-1.6.jar                |Longer Chat History           |longerchathistory             |1.6                 |Manifest: NOSIGNATURE         lootintegration_wda-1.6.jar                       |lootintegration_wda mod       |lootintegration_wda           |1                   |Manifest: NOSIGNATURE         lootintegrations-1.21-4.2.jar                     |Lootintegrations mod          |lootintegrations              |4.2                 |Manifest: NOSIGNATURE         lootintegrations_cataclysm-1.1.jar                |lootintegrations_cataclysm mod|lootintegrations_cataclysm    |1                   |Manifest: NOSIGNATURE         lootintegrations_ctov-1.3.jar                     |lootintegrations_ctov mod     |lootintegrations_ctov         |1                   |Manifest: NOSIGNATURE         lootintegrations_hopo-1.3.jar                     |lootintegrations_hopo mod     |lootintegrations_hopo         |1                   |Manifest: NOSIGNATURE         lootjs-neoforge-1.21.1-3.4.0.jar                  |LootJS                        |lootjs                        |1.21.1-3.4.0        |Manifest: NOSIGNATURE         lootr-neoforge-1.21-1.10.35.90.jar                |Lootr                         |lootr                         |1.21-1.10.35.90     |Manifest: NOSIGNATURE         lukis-crazy-chambers-1.0.jar                      |Luki's Crazy Chambers         |mr_lukis_crazychambers        |1.0                 |Manifest: NOSIGNATURE         mcw-bridges-3.0.0-mc1.21.1neoforge.jar            |Macaw's Bridges               |mcwbridges                    |3.0.0               |Manifest: NOSIGNATURE         mcw-doors-1.1.2-mc1.21.1neoforge.jar              |Macaw's Doors                 |mcwdoors                      |1.1.2               |Manifest: NOSIGNATURE         mcw-fences-1.1.2-mc1.21.1neoforge.jar             |Macaw's Fences and Walls      |mcwfences                     |1.1.2               |Manifest: NOSIGNATURE         mcw-holidays-1.1.0-mc1.21.1neoforge.jar           |Macaw's Holidays              |mcwholidays                   |1.1.0               |Manifest: NOSIGNATURE         mcw-paintings-1.0.5-1.21.1neoforge.jar            |Macaw's Paintings             |mcwpaintings                  |1.0.5               |Manifest: NOSIGNATURE         mcw-paths-1.1.0neoforge-mc1.21.1.jar              |Macaw's Paths and Pavings     |mcwpaths                      |1.1.0               |Manifest: NOSIGNATURE         mcw-roofs-2.3.1-mc1.21.1neoforge.jar              |Macaw's Roofs                 |mcwroofs                      |2.3.1               |Manifest: NOSIGNATURE         mcw-stairs-1.0.1-1.21.1neoforge.jar               |Macaw's Stairs and Balconies  |mcwstairs                     |1.0.1               |Manifest: NOSIGNATURE         mcw-trapdoors-1.1.4-mc1.21.1neoforge.jar          |Macaw's Trapdoors             |mcwtrpdoors                   |1.1.4               |Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.21.1neoforge.jar            |Macaw's Windows               |mcwwindows                    |2.3.2               |Manifest: NOSIGNATURE         maxhealthfix-neoforge-1.21.1-21.1.4.jar           |MaxHealthFix                  |maxhealthfix                  |21.1.4              |Manifest: NOSIGNATURE         MEED-1.21.1-6.5.jar                               |MEED                          |moderately                    |5.0.0               |Manifest: NOSIGNATURE         Mekanism-1.21.1-10.7.13.78.jar                    |Mekanism                      |mekanism                      |10.7.13             |Manifest: NOSIGNATURE         MekanismGenerators-1.21.1-10.7.13.78.jar          |Mekanism: Generators          |mekanismgenerators            |10.7.13             |Manifest: NOSIGNATURE         MekanismTools-1.21.1-10.7.13.78.jar               |Mekanism: Tools               |mekanismtools                 |10.7.13             |Manifest: NOSIGNATURE         melody_neoforge_1.0.10_MC_1.21.jar                |Melody                        |melody                        |1.0.10              |Manifest: NOSIGNATURE         midnightlib-1.6.9-neoforge+1.21.jar               |MidnightLib                   |midnightlib                   |1.6.9               |Manifest: NOSIGNATURE         MRU-1.0.8+1.21+neoforge.jar                       |Mineblock's Repeated Utilities|mru                           |1.0.8+1.21+neoforge |Manifest: NOSIGNATURE         minecolonies-1.1.907-1.21.1-snapshot.jar          |MineColonies                  |minecolonies                  |1.1.907-1.21.1-snaps|Manifest: NOSIGNATURE         client-1.21.1-20240808.144430-srg.jar             |Minecraft                     |minecraft                     |1.21.1              |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         dummmmmmy-1.21-2.0.7-neoforge.jar                 |MmmMmmMmmMmm                  |dummmmmmy                     |1.21-2.0.7          |Manifest: NOSIGNATURE         modernworldcreation_neoforge_2.0.1_MC_1.21.1.jar  |Modern World Creation         |modernworldcreation           |2.0.1               |Manifest: NOSIGNATURE         modernfix-neoforge-5.20.2+mc1.21.1.jar            |ModernFix                     |modernfix                     |5.20.2+mc1.21.1     |Manifest: NOSIGNATURE         modonomicon-1.21.1-neoforge-1.114.0.jar           |Modonomicon                   |modonomicon                   |1.114.0             |Manifest: NOSIGNATURE         modular-routers-13.2.1+mc1.21.1.jar               |Modular Routers               |modularrouters                |13.2.1              |Manifest: NOSIGNATURE         mes-1.3.5-1.21.jar                                |Moog's End Structures         |mes                           |1.3.5-1.21          |Manifest: NOSIGNATURE         mns-1.0.8-1.21.jar                                |Moog's Nether Structures      |mns                           |1.0.8-1.21          |Manifest: NOSIGNATURE         mss-1.2.8-1.21.jar                                |Moog's Soaring Structures     |mss                           |1.2.8-1.21          |Manifest: NOSIGNATURE         mvs-4.2.8-1.21.jar                                |Moog's Voyager Structures     |mvs                           |4.2.8-1.21          |Manifest: NOSIGNATURE         moonlight-1.21-2.17.37-neoforge.jar               |Moonlight Lib                 |moonlight                     |1.21-2.17.37        |Manifest: NOSIGNATURE         morebrushes-1.2-neoforge-mc1.21.jar               |More Brushes                  |morebrushes                   |1.2                 |Manifest: NOSIGNATURE         moredelight-25.01.13a-1.21-neoforge.jar           |More Delight                  |moredelight                   |25.01.13a-1.21-neofo|Manifest: NOSIGNATURE         moredragoneggs-5.0.jar                            |More Dragon Eggs              |moredragoneggs                |5.0                 |Manifest: NOSIGNATURE         more-immersive-wires-1.21.1-1.1.6.jar             |More Immersive Wires          |more_immersive_wires          |1.1.6               |Manifest: NOSIGNATURE         mifa-neoforge-1.21.x-2.1.0.jar                    |More Industrial Foregoing Addo|mifa                          |2.1.0               |Manifest: NOSIGNATURE         morejs-neoforge-1.21-0.13.1.jar                   |MoreJS                        |morejs                        |1.21-0.13.1         |Manifest: NOSIGNATURE         refurbished_furniture-neoforge-1.21.1-1.0.12.jar  |MrCrayfish's Furniture Mod: Re|refurbished_furniture         |1.0.12              |Manifest: NOSIGNATURE         multipiston-1.2.51-1.21.1-snapshot.jar            |Multi-Piston                  |multipiston                   |1.2.51-1.21.1-snapsh|Manifest: NOSIGNATURE         MyNethersDelight-1.21-1.7.8.jar                   |My Nether's Delight           |mynethersdelight              |1.7.8               |Manifest: NOSIGNATURE         MysticalAgriculture-1.21.1-8.0.13.jar             |Mystical Agriculture          |mysticalagriculture           |8.0.13              |Manifest: NOSIGNATURE         MysticalCustomization-1.21.1-6.0.0.jar            |Mystical Customization        |mysticalcustomization         |6.0.0               |Manifest: NOSIGNATURE         NaNny-1.21.1-1.0.1.jar                            |NaNny                         |nanny                         |1.0.1               |Manifest: NOSIGNATURE         NaturesCompass-1.21.1-3.0.3-neoforge.jar          |Nature's Compass              |naturescompass                |1.21.1-3.0.2-neoforg|Manifest: NOSIGNATURE         NBTac-NEOFORGE-1.21.1-1.3.10.jar                  |NBT Autocomplete              |nbt_ac                        |1.3.10              |Manifest: NOSIGNATURE         Necronomicon-NeoForge-1.6.0+1.21.jar              |Necronomicon                  |necronomicon                  |1.6.0               |Manifest: NOSIGNATURE         NeoAuth-1.21.1-1.0.0.jar                          |NeoAuth                       |neo_auth                      |1.0.0               |Manifest: NOSIGNATURE         neoforge-21.1.133-universal.jar                   |NeoForge                      |neoforge                      |21.1.133            |Manifest: NOSIGNATURE         Neruina-2.2.8-neoforge+1.21.jar                   |Neruina                       |neruina                       |2.2.8               |Manifest: NOSIGNATURE         netherportalfix-neoforge-1.21.1-21.1.1.jar        |NetherPortalFix               |netherportalfix               |21.1.1              |Manifest: NOSIGNATURE         NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar          |No Chat Reports               |nochatreports                 |1.21.1-v2.9.1       |Manifest: NOSIGNATURE         no-report-button-neoforge-1.6.1.jar               |No Report Button              |noreportbutton                |1.6.1               |Manifest: NOSIGNATURE         notrample-1.21.1-1.0.1.jar                        |No Trample                    |notrample                     |1.21.1-1.0.1        |Manifest: NOSIGNATURE         novillagerdm-1.21.1-6.0.0.jar                     |No Villager Death Messages    |novillagerdm                  |6.0.0               |Manifest: NOSIGNATURE         noisium-neoforge-2.3.0+mc1.21-1.21.1.jar          |Noisium                       |noisium                       |2.3.0+mc1.21-1.21.1 |Manifest: NOSIGNATURE         notenoughanimations-neoforge-1.9.2-mc1.21.jar     |NotEnoughAnimations           |notenoughanimations           |1.9.2               |Manifest: NOSIGNATURE         nuggets-neoforge-1.21-1.0.4.35.jar                |Nuggets                       |nuggets                       |1.0.4.35            |Manifest: NOSIGNATURE         Nullscape_1.21.x_v1.2.10.jar                      |Nullscape                     |nullscape                     |1.2.10              |Manifest: NOSIGNATURE         observable-5.4.3.jar                              |Observable                    |observable                    |5.4.3               |Manifest: NOSIGNATURE         occultism-1.21.1-neoforge-1.177.1.jar             |Occultism                     |occultism                     |1.177.1             |Manifest: NOSIGNATURE         OctoLib-NEOFORGE-0.5.0.1.jar                      |OctoLib                       |octolib                       |0.5.0.1             |Manifest: NOSIGNATURE         Oh-The-Biomes-Weve-Gone-NeoForge-2.3.11.jar       |Oh The Biomes We've Gone      |biomeswevegone                |2.3.11              |Manifest: NOSIGNATURE         Oh-The-Trees-Youll-Grow-neoforge-1.21.1-5.0.9.jar |Oh The Trees You'll Grow      |ohthetreesyoullgrow           |5.0.9               |Manifest: NOSIGNATURE         packetfixer-neoforge-2.1.0-1.21-to-1.21.3.jar     |Packet Fixer                  |packetfixer                   |2.1.0               |Manifest: NOSIGNATURE         paperdoll-neoforge-1.2.7-mc1.21.jar               |Paperdoll                     |paperdoll                     |1.2.7               |Manifest: NOSIGNATURE         particle_core-0.2.5+1.21+neoforge.jar             |Particle Core                 |particle_core                 |0.2.5+1.21+neoforge |Manifest: NOSIGNATURE         Patchouli-1.21-88-NEOFORGE.jar                    |Patchouli                     |patchouli                     |1.21-88-NEOFORGE    |Manifest: NOSIGNATURE         Paxi-1.21.1-NeoForge-5.1.2.jar                    |Paxi                          |paxi                          |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         pipe_connector-neoforge-0.5.7.jar                 |Pipe Connector                |pipe_connector                |0.5.7               |Manifest: NOSIGNATURE         PKGBadges-7.0.jar                                 |PKGBadges                     |pkgbadges                     |7.0                 |Manifest: NOSIGNATURE         Placebo-1.21.1-9.7.0.jar                          |Placebo                       |placebo                       |9.7.0               |Manifest: NOSIGNATURE         player-animation-lib-forge-2.0.1+1.21.1.jar       |Player Animator               |playeranimator                |2.0.1+1.21.1        |Manifest: NOSIGNATURE         playertrade-1.21.1-a.jar                          |PlayerTrade                   |playertrade                   |1.21.1-a            |Manifest: NOSIGNATURE         polymorph-neoforge-1.0.7+1.21.1.jar               |Polymorph                     |polymorph                     |1.0.7+1.21.1        |Manifest: NOSIGNATURE         polyeng-0.4.1.jar                                 |Polymorphic Energistics       |polyeng                       |0.4.1               |Manifest: NOSIGNATURE         Ponder-NeoForge-1.21.1-1.0.0.jar                  |Ponder                        |ponder                        |1.0.0               |Manifest: NOSIGNATURE         Powah-6.2.1.jar                                   |Powah                         |powah                         |6.2.1               |Manifest: NOSIGNATURE         ppfluids-1.21.1-3.1.0.jar                         |Pretty Pipes: Fluids          |ppfluids                      |3.1.0               |Manifest: NOSIGNATURE         PrettyPipes-1.21.0-all.jar                        |PrettyPipes                   |prettypipes                   |1.21.0              |Manifest: NOSIGNATURE         prickle-neoforge-1.21.1-21.1.6.jar                |PrickleMC                     |prickle                       |21.1.6              |Manifest: NOSIGNATURE         Prism-1.21-neoforge-1.0.9.jar                     |Prism                         |prism                         |1.0.9               |Manifest: NOSIGNATURE         projectvibrantjourneys-1.21.1-7.0.6.jar           |Project: Vibrant Journeys     |projectvibrantjourneys        |1.21.1-7.0.6        |Manifest: NOSIGNATURE         puffish_skills-0.15.2-1.21-neoforge.jar           |Pufferfish's Skills           |puffish_skills                |0.15.2              |Manifest: NOSIGNATURE         pyrotechnic-elytra-neoforge-1.21.1-1.0.0.jar      |Pyrotechnic Elytra            |pyrotechnic_elytra            |1.0.0               |Manifest: NOSIGNATURE         Quest-Kill-Task-neoforge-0.2.0+1.21.1.jar         |Quest Kill Task               |questkilltask                 |0.2.0+1.21.1        |Manifest: NOSIGNATURE         rctmod-neoforge-1.21.1-0.14.1-beta.jar            |Radical Cobblemon Trainers    |rctmod                        |0.14.1-beta         |Manifest: NOSIGNATURE         rctapi-neoforge-1.21.1-0.10.14-beta.jar           |Radical Cobblemon Trainers API|rctapi                        |0.10.14-beta        |Manifest: NOSIGNATURE         Raided-1.21.1-0.1.4.2.jar                         |Raided                        |raided                        |0.1.4.2             |Manifest: NOSIGNATURE         Rainbows-1.21-1.4.jar                             |Rainbows                      |rainbows                      |1.4                 |Manifest: NOSIGNATURE         raised-neoforge-1.21.1-4.0.1.jar                  |Raised                        |raised                        |4.0.1               |Manifest: NOSIGNATURE         rarcompat-1.21-0.9.5.jar                          |RAR-Compat                    |rarcompat                     |0.9.5               |Manifest: NOSIGNATURE         recipeessentials-1.21-4.0.jar                     |recipeessentials mod          |recipeessentials              |4.0                 |Manifest: NOSIGNATURE         redirected-neoforge-1.0.0-1.21.1.jar              |Redirected                    |redirected                    |1.0.0               |Manifest: NOSIGNATURE         reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar |Reese's Sodium Options        |reeses_sodium_options         |1.8.3+mc1.21.4      |Manifest: NOSIGNATURE         regions_unexplored-neoforge-1.21.1-0.5.6.1.jar    |Regions Unexplored            |regions_unexplored            |0.5.6.1             |Manifest: NOSIGNATURE         relics-1.21.1-0.10.7.2.jar                        |Relics                        |relics                        |0.10.7.2            |Manifest: NOSIGNATURE         repeatable_trial_vaults-neoforge-1.21-1.0.2.jar   |Repeatable Trial Vaults       |repeatable_trial_vaults       |1.0.2               |Manifest: NOSIGNATURE         repurposed_structures-7.5.13+1.21.1-neoforge.jar  |Repurposed Structures         |repurposed_structures         |7.5.13+1.21.1-neofor|Manifest: NOSIGNATURE         resourcefullib-neoforge-1.21-3.0.11.jar           |Resourceful Lib               |resourcefullib                |3.0.11              |Manifest: NOSIGNATURE         resourcefulconfig-neoforge-1.21-3.0.9.jar         |Resourcefulconfig             |resourcefulconfig             |3.0.9               |Manifest: NOSIGNATURE         rhino-2101.2.7-build.74.jar                       |Rhino                         |rhino                         |2101.2.7-build.74   |Manifest: NOSIGNATURE         rightclickharvest-neoforge-4.5.3+1.21.1.jar       |Right Click Harvest           |rightclickharvest             |4.5.3+1.21.1        |Manifest: NOSIGNATURE         runelic-neoforge-1.21.1-21.1.3.jar                |Runelic                       |runelic                       |21.1.3              |Manifest: NOSIGNATURE         seals-1.21.0-3.2.3.jar                            |Seals                         |seals                         |3.2.3               |Manifest: NOSIGNATURE         Searchables-neoforge-1.21.1-1.0.2.jar             |Searchables                   |searchables                   |1.0.2               |Manifest: NOSIGNATURE         servercore-neoforge-1.5.5+1.21.1.jar              |ServerCore                    |servercore                    |1.5.5+1.21.1        |Manifest: NOSIGNATURE         showcaseitem-1.21-1.0.1.jar                       |Showcase Item                 |showcaseitem                  |1.21-1.0.1          |Manifest: NOSIGNATURE         silent-gear-1.21.1-neoforge-4.0.16.jar            |Silent Gear                   |silentgear                    |4.0.16              |Manifest: NOSIGNATURE         silent-lib-1.21.1-neoforge-10.4.0.jar             |Silent Lib                    |silentlib                     |10.4.0              |Manifest: NOSIGNATURE         SimpleBackups-1.21-4.0.8.jar                      |Simple Backups                |simplebackups                 |1.21-4.0.8          |Manifest: NOSIGNATURE         SimpleDiscordLink-Universal-3.2.3.jar             |Simple Discord Link           |sdlink                        |3.2.3               |Manifest: NOSIGNATURE         SimplePocketMachines-NeoForge-1.21.1-1.0.2.jar    |Simple Pocket Machines        |pocketmachines                |1.0.2               |Manifest: NOSIGNATURE         SimpleRPC-Universal-4.0.0.jar                     |Simple RPC                    |simplerpc                     |4.0.0               |Manifest: NOSIGNATURE         voicechat-neoforge-1.21.1-2.5.28.jar              |Simple Voice Chat             |voicechat                     |1.21.1-2.5.28       |Manifest: NOSIGNATURE         SimpleTMs-neoforge-2.0.3.jar                      |SimpleTMs                     |simpletms                     |2.0.3               |Manifest: NOSIGNATURE         simplylight-1.5.3+1.21.1-b4.jar                   |Simply Light                  |simplylight                   |1.5.3               |Manifest: NOSIGNATURE         SmartBrainLib-neoforge-1.21.1-1.16.7.jar          |SmartBrainLib                 |smartbrainlib                 |1.16.7              |Manifest: NOSIGNATURE         smarterfarmers-1.21-2.2.2-neoforge.jar            |Smarter Farmers               |smarterfarmers                |1.21-2.2.2          |Manifest: NOSIGNATURE         smithingtemplateviewer-1.0.0.jar                  |SmithingTemplateViewer        |smithingtemplateviewer        |1.0.0               |Manifest: NOSIGNATURE         smoothchunk-1.21-4.1.jar                          |Smoothchunk mod               |smoothchunk                   |4.1                 |Manifest: NOSIGNATURE         snowundertrees-1.21.1-1.4.9.jar                   |Snow Under Trees              |snowundertrees                |1.4.9               |Manifest: NOSIGNATURE         sodium-neoforge-0.6.9+mc1.21.1.jar                |Sodium                        |sodium                        |0.6.9+mc1.21.1      |Manifest: NOSIGNATURE         sodiumdynamiclights-neoforge-1.0.10-1.21.1.jar    |Sodium Dynamic Lights         |sodiumdynamiclights           |1.0.9               |Manifest: NOSIGNATURE         sodium-extra-neoforge-0.6.0+mc1.21.1.jar          |Sodium Extra                  |sodium_extra                  |0.6.0+mc1.21.1      |Manifest: NOSIGNATURE         SodiumExtraInformation-neoforge-2.5.jar           |Sodium Extra Information      |sodiumextrainformation        |2.3                 |Manifest: NOSIGNATURE         sodiumextras-neoforge-1.0.7-1.21.1.jar            |Sodium Extras                 |sodiumextras                  |1.0.6               |Manifest: NOSIGNATURE         sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar       |Sodium Options API            |sodiumoptionsapi              |1.0.10              |Manifest: NOSIGNATURE         sodiumoptionsmodcompat-neoforge-1.0.0-1.21.1.jar  |Sodium Options Mod Compat     |sodiumoptionsmodcompat        |1.0.0               |Manifest: NOSIGNATURE         sodium-shadowy-path-blocks-neoforge-4.0.0.jar     |Sodium Shadowy Path Blocks    |sspb                          |4.0.0               |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.21.1-3.24.1.1212.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |3.24.1              |Manifest: NOSIGNATURE         sophisticatedcore-1.21.1-1.3.3.903.jar            |Sophisticated Core            |sophisticatedcore             |1.3.3               |Manifest: NOSIGNATURE         sophisticatedstorage-1.21.1-1.4.0.1079.jar        |Sophisticated Storage         |sophisticatedstorage          |1.4.0               |Manifest: NOSIGNATURE         sophisticatedstorageinmotion-1.21.1-0.10.5.72.jar |Sophisticated Storage In Motio|sophisticatedstorageinmotion  |0.10.5              |Manifest: NOSIGNATURE         soul-fire-d-neoforge-1.21-5.1.6.jar               |Soul Fire'd                   |soul_fire_d                   |5.1.6               |Manifest: NOSIGNATURE         spark-1.10.124-neoforge.jar                       |spark                         |spark                         |1.10.124            |Manifest: NOSIGNATURE         Sparkweave-NeoForge-0.508.1.jar                   |Sparkweave Engine             |sparkweave                    |0.508.1             |Manifest: NOSIGNATURE         spectrelib-neoforge-0.17.2+1.21.jar               |SpectreLib                    |spectrelib                    |0.17.2+1.21         |Manifest: NOSIGNATURE         Spice of Life Onion_NEOFORGE_v1.4.7_mc1.21.1.jar  |Spice of Life Onion           |solonion                      |1.4.7               |Manifest: NOSIGNATURE         spyglass_improvements-1.5.7+mc1.21+neoforge.jar   |Spyglass Improvements         |spyglass_improvements         |1.5.7               |Manifest: NOSIGNATURE         starterkit-1.21.1-7.3.jar                         |Starter Kit                   |starterkit                    |7.3                 |Manifest: NOSIGNATURE         starterstructure-1.21.1-4.0.jar                   |Starter Structure             |starterstructure              |4.0                 |Manifest: NOSIGNATURE         labels-1.21-2.0.1-neoforge.jar                    |Storage Labels                |labels                        |1.21-2.0.1          |Manifest: NOSIGNATURE         Structory_1.21.x_v1.3.9.jar                       |Structory                     |structory                     |1.3.9               |Manifest: NOSIGNATURE         Structory_Towers_1.21.x_v1.0.10.jar               |Structory: Towers             |structory_towers              |1.0.10              |Manifest: NOSIGNATURE         structureessentials-1.21.1-4.5.jar                |Structure Essentials mod      |structureessentials           |4.5                 |Manifest: NOSIGNATURE         structure-expansion-neoforge-87.0.0.jar           |Structure Expansion           |structureexpansion            |87.0.0              |Manifest: NOSIGNATURE         structure_layout_optimizer-neoforge-1.0.10.jar    |Structure Layout Optimizer    |structure_layout_optimizer    |1.0.10              |Manifest: NOSIGNATURE         structurize-1.0.766-1.21.1-snapshot.jar           |Structurize                   |structurize                   |1.0.766-1.21.1-snaps|Manifest: NOSIGNATURE         stylecolonies-1.12-1.21.1.jar                     |Stylecolonies                 |stylecolonies                 |1.12                |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-neoforge-mc1.21.jar|SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.18a-neoforge-mc1.21.jar|SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.18+a            |Manifest: NOSIGNATURE         supplementaries-1.21-3.0.43-beta-neoforge.jar     |Supplementaries               |supplementaries               |1.21-3.0.43-beta    |Manifest: NOSIGNATURE         sushigocrafting-1.21-0.6.4.jar                    |Sushi Go Crafting             |sushigocrafting               |0.6.4               |Manifest: NOSIGNATURE         sussysniffers-1.21.1-0.1.2.jar                    |Sussy Sniffers                |sussysniffers                 |1.21.1-0.1.2        |Manifest: NOSIGNATURE         tectonic-neoforge-1.21.1-2.4.3.jar                |Tectonic                      |tectonic                      |2.4.3               |Manifest: NOSIGNATURE         TerraBlender-neoforge-1.21.1-4.1.0.8.jar          |TerraBlender                  |terrablender                  |4.1.0.8             |Manifest: NOSIGNATURE         thaumon-neoforge-2.3.0+1.21.jar                   |Thaumon                       |thaumon                       |2.3.0+1.21          |Manifest: NOSIGNATURE         tidal-towns-1.3.4.jar                             |Tidal Towns                   |mr_tidal_towns                |1.3.4               |Manifest: NOSIGNATURE         titanium-1.21-4.0.36.jar                          |Titanium                      |titanium                      |4.0.36              |Manifest: NOSIGNATURE         ToastControl-1.21-9.0.0.jar                       |Toast Control                 |toastcontrol                  |9.0.0               |Manifest: NOSIGNATURE         toms_storage-1.21-2.1.1.jar                       |Tom's Simple Storage Mod      |toms_storage                  |2.1.1               |Manifest: NOSIGNATURE         Tomtaru's Cobblemon  Farmer's Delight Tweaks - 1.2|Tomtaru's Cobblemon & Farmer's|tmtcd                         |1.2.0               |Manifest: NOSIGNATURE         Tomtaru's Cobblemon  Immersive Engineering Tweaks |Tomtaru's Cobblemon & Immersiv|tmtceic                       |2.2.0               |Manifest: NOSIGNATURE         toomanyrecipeviewers-0.3.3+jei.19.21.0.247.jar    |TooManyRecipeViewers          |toomanyrecipeviewers          |0.3.3+jei.19.21.0.24|Manifest: NOSIGNATURE         torchmaster-neoforge-1.21.1-21.1.5-beta.jar       |Torchmaster                   |torchmaster                   |21.1.5-beta         |Manifest: NOSIGNATURE         towntalk-1.2.0.jar                                |Towntalk                      |towntalk                      |1.2.0               |Manifest: NOSIGNATURE         tradeuses-1.2.5-1.21-NEOFORGE.jar                 |Trade Uses                    |tradeuses                     |1.2.5               |Manifest: NOSIGNATURE         TravelersTitles-1.21.1-NeoForge-5.1.3.jar         |Traveler's Titles             |travelerstitles               |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         txnilib-neoforge-1.0.23-1.21.1.jar                |TxniLib                       |txnilib                       |1.0.23              |Manifest: NOSIGNATURE         blockui-1.0.196-1.21.1-snapshot.jar               |UI Library Mod                |blockui                       |1.0.196-1.21.1-snaps|Manifest: NOSIGNATURE         villagesandpillages-neoforge-mc1.21.1-1.0.3.jar   |Villages & Pillages           |villagesandpillages           |1.0.3               |Manifest: NOSIGNATURE         waveycapes-neoforge-1.5.1-mc1.21.jar              |WaveyCapes                    |waveycapes                    |1.5.1               |Manifest: NOSIGNATURE         waystones-neoforge-1.21.1-21.1.13.jar             |Waystones                     |waystones                     |21.1.13             |Manifest: NOSIGNATURE         welcomescreen-neoforge-1.0.0-1.21.1.jar           |Welcome Screen                |welcomescreen                 |1.0.0               |Manifest: NOSIGNATURE         watut-neoforge-1.21.0-1.2.3.jar                   |What Are They Up To           |watut                         |1.21.0-1.2.3        |Manifest: NOSIGNATURE         whats-that-slot-neoforge-1.3.6+1.21.jar           |What's That Slot              |whats_that_slot               |1.3.6               |Manifest: NOSIGNATURE         DungeonsArise-1.21.x-2.1.64-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.64              |Manifest: NOSIGNATURE         wits-1.3.0+1.21-neoforge.jar                      |WITS                          |wits                          |1.3.0+1.21-neoforge |Manifest: NOSIGNATURE         xptome-1.21.1-2.4.jar                             |XP Tome                       |xpbook                        |2.4                 |Manifest: NOSIGNATURE         xtonesreworked-1.1.0-NF-1.21_21.0.167.jar         |XTones Reworked               |xtonesreworked                |1.1.0               |Manifest: NOSIGNATURE         yeetusexperimentus-neoforge-87.0.0.jar            |Yeetus Experimentus           |yeetusexperimentus            |87.0.0              |Manifest: NOSIGNATURE         yet-another-config-lib-3.5.0+1.21-neoforge.jar    |YetAnotherConfigLib           |yet_another_config_lib_v3     |3.5.0+1.21-neoforge |Manifest: NOSIGNATURE         youre-in-grave-danger-neoforge-2.0.9.jar          |You're in Grave Danger        |yigd                          |2.0.9               |Manifest: NOSIGNATURE         YungsApi-1.21.1-NeoForge-5.1.4.jar                |YUNG's API                    |yungsapi                      |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         YungsBetterDungeons-1.21.1-NeoForge-5.1.4.jar     |YUNG's Better Dungeons        |betterdungeons                |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         YungsBetterEndIsland-1.21.1-NeoForge-3.1.2.jar    |YUNG's Better End Island      |betterendisland               |1.21.1-NeoForge-3.1.|Manifest: NOSIGNATURE         YungsBetterStrongholds-1.21.1-NeoForge-5.1.3.jar  |YUNG's Better Strongholds     |betterstrongholds             |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         YungsBridges-1.21.1-NeoForge-5.1.1.jar            |YUNG's Bridges                |yungsbridges                  |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         ZeroCore2-1.21.1-2.4.16.jar                       |Zero CORE 2                   |zerocore                      |1.21.1-2.4.16       |Manifest: NOSIGNATURE     Crash Report UUID: 237a5ff5-a048-4c44-a752-345640983173     FML: 4.0.38     NeoForge: 21.1.133     Flywheel Backend: flywheel:off
    • I don't see a dreadglare or greater_dreadglare in my mod lists?
    • https://mclo.gs/yWHRnlY Tryna play with the bois. Would be very grateful if anyone knew how to fix  
  • Topics

×
×
  • Create New...

Important Information

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