Jump to content

Recommended Posts

Posted (edited)

I have used a Capability to store a lot of data on to the player and usually Im able to access the data just fine and get the correct values by using  the capability's interface  (called IStats) . here is an example of using the Capability to get the necessary values that works fine
 

Spoiler

if(attacker instanceof EntityPlayer)
		{
			EntityPlayer player = (EntityPlayer) attacker;
			IStats playerStats = player.getCapability(StatsProvider.STATS_CAPABILITY, null);		
			ItemStack weaponstack = player.getHeldItemMainhand();
			Item weapon = weaponstack.getItem();
			
			
		    if(weapon instanceof ItemMyWeapons)
		    {
		    	float rawDamage = damage;
		    	int maxCondition = weaponstack.getMaxDamage();
				int condition = weaponstack.getMaxDamage() - weaponstack.getItemDamage();
			 	
		    	System.out.print("\nWeapon's damage is  " + rawDamage);
		    	
			 	
		    	rawDamage *= 0.5 + 0.01 * playerStats.getStat(StatConstants.STRENGTH);
    			rawDamage *= (float)condition / (float)maxCondition;
    			
    			return round1(rawDamage, 2);
		    }
			return 0;
		}
		else if (attacker instanceof EntityMob)
		{
		  float rawDamage = damage;
		  IMobStats mobStats = attacker.getCapability(MobStatsProvider.MOB_STATS_CAPABILITY, null);
		  
		  rawDamage *= 0.5 + 0.01 * mobStats.getStat(StatConstants.STRENGTH);
		  
		  return round1(rawDamage, 2);
		}
		return 0;

 

But when I try to do this
 

Minecraft.getMinecraft().displayGuiScreen(new CharacterSheetGUI(Minecraft.getMinecraft().player));

once the GUI is displayed its giving me incorrect numbers. Here is the GUI code if it helps

Spoiler

public class CharacterSheetGUI extends GuiScreen{
	
	ResourceLocation texture = new ResourceLocation(Reference.MOD_ID, "textures/gui/vanillabook.png");
	int guiHeight = 192;
	int guiWidth = 192;
	GuiButton button1;
	GuiButton button2;
	GuiButton button3;
	EntityPlayer player;
	int  page = 0;
	
	final int BUTTON1 = 0;
	final int BUTTON2 = 1;
	final int BUTTON3 = 2;
	
	public CharacterSheetGUI(EntityPlayer player)
	{
		this.player = player;
	}
	
	Minecraft mc = Minecraft.getMinecraft();
	
	@Override
	public void drawScreen(int mouseX, int mouseY, float partialTicks)
    {
        drawDefaultBackground();
		Minecraft.getMinecraft().renderEngine.bindTexture(texture);
		int centerX =(width / 2) - guiWidth / 2;
		int centerY = (height /2) - guiHeight / 2;
        drawTexturedModalRect(centerX, centerY-20, 0, 0, guiWidth, guiHeight);
		
		
		IStats playerStats = player.getCapability(StatsProvider.STATS_CAPABILITY, null);
		ISkills playerSkills = player.getCapability(SkillsProvider.SKILLS_CAPABILITY, null);
		if(page == 0) {
			fontRenderer.drawString("Attributes ", centerX+40, centerY-5, 0x000000);
			fontRenderer.drawString("Strength: " + playerStats.getStat(StatConstants.STRENGTH), centerX+40, centerY+10, 0x000000);
			fontRenderer.drawString("Endurance: " + playerStats.getStat(StatConstants.ENDURANCE), centerX+40, centerY+20, 0x000000);
			fontRenderer.drawString("Speed: " + playerStats.getStat(StatConstants.SPEED), centerX+40, centerY+30, 0x000000);
			fontRenderer.drawString("Agility: " + playerStats.getStat(StatConstants.AGILITY), centerX+40, centerY+40, 0x000000);
			fontRenderer.drawString("Intelligence: " + playerStats.getStat(StatConstants.INTELLIGENCE), centerX+40, centerY+50, 0x000000);
			fontRenderer.drawString("Luck: " + playerStats.getStat(StatConstants.LUCK), centerX+40, centerY+60, 0x000000);
		
			fontRenderer.drawString("Major Skills", centerX+40, centerY+75, 0x000000);
			fontRenderer.drawString("Long Blade " + playerSkills.getStat(StatConstants.LONG_BLADE), centerX+40, centerY+90, 0x000000);
			fontRenderer.drawString("Short Blade " + playerSkills.getStat(StatConstants.SHORT_BLADE), centerX+40, centerY+100, 0x000000);
			fontRenderer.drawString("Axe " + playerSkills.getStat(StatConstants.AXE), centerX+40, centerY+110, 0x000000);
			fontRenderer.drawString("Spear " + playerSkills.getStat(StatConstants.SPEAR), centerX+40, centerY+120, 0x000000);
			fontRenderer.drawString("Heavy Armor " + playerSkills.getStat(StatConstants.HEAVY_ARMOR), centerX+40, centerY+130, 0x000000);
		}
		
		if(page == 1) {
			
			fontRenderer.drawString("Minor Skills ", centerX+40, centerY-5, 0x000000);
			fontRenderer.drawString("Strength: " + playerStats.getStat(StatConstants.STRENGTH), centerX+40, centerY+10, 0x000000);
			fontRenderer.drawString("Endurance: " + playerStats.getStat(StatConstants.ENDURANCE), centerX+40, centerY+20, 0x000000);
			fontRenderer.drawString("Speed: " + playerStats.getStat(StatConstants.SPEED), centerX+40, centerY+30, 0x000000);
			fontRenderer.drawString("Agility: " + playerStats.getStat(StatConstants.AGILITY), centerX+40, centerY+40, 0x000000);
			fontRenderer.drawString("Intelligence: " + playerStats.getStat(StatConstants.INTELLIGENCE), centerX+40, centerY+50, 0x000000);
			
			fontRenderer.drawString("Miscelleaneous Skills", centerX+40, centerY+75, 0x000000);
			fontRenderer.drawString("Long Blade " + playerSkills.getStat(StatConstants.LONG_BLADE), centerX+40, centerY+90, 0x000000);
			fontRenderer.drawString("Short Blade " + playerSkills.getStat(StatConstants.SHORT_BLADE), centerX+40, centerY+100, 0x000000);
			fontRenderer.drawString("Axe " + playerSkills.getStat(StatConstants.AXE), centerX+40, centerY+110, 0x000000);
			fontRenderer.drawString("Spear " + playerSkills.getStat(StatConstants.SPEAR), centerX+40, centerY+120, 0x000000);
			fontRenderer.drawString("Heavy Armor " + playerSkills.getStat(StatConstants.HEAVY_ARMOR), centerX+40, centerY+130, 0x000000);
		}
		
		super.drawScreen(mouseX, mouseY, partialTicks);
    }
	
	@Override
	public void initGui()
	{
		buttonList.clear();
		int centerX =(width / 2) - guiWidth / 2;
		int centerY = (height /2) - guiHeight / 2;
		buttonList.add(button1 = new GuiButton(BUTTON1, centerX+40, centerY +170, 100, 20, "Done"));
		buttonList.add(button2 = new GuiButton(BUTTON2, 0, 0, 50, 20, "Next")); 
		buttonList.add(button3 = new GuiButton(BUTTON3, 0, 30, 50, 20, "Previous"));
		button3.enabled = false;
		super.initGui();
	}
	
	public void updateButtons()
	{
		if(page == 1) {
			button2.enabled = false;
			button3.enabled = true;
		}
		if(page == 0) {
			button3.enabled = false;
			button2.enabled = true;
		}
		
		
			
	}
	
	@Override 
	protected void actionPerformed(GuiButton button) throws IOException
	{
		switch (button.id)
		{
			case BUTTON1: Minecraft.getMinecraft().displayGuiScreen(null);
				break;
			case BUTTON2: if(page == 0) page++;	
				break;
			case BUTTON3:  if(page == 1) page--;
				break;
		}	
		updateButtons();
		super.actionPerformed(button);
	}
	
	@Override
	public boolean doesGuiPauseGame()
    {
        return true;
    }
	

 


For example this line
 

fontRenderer.drawString("Long Blade " + playerSkills.getStat(StatConstants.LONG_BLADE), centerX+40, centerY+90, 0x000000);

will display Long Blade 0 (which is the value it is initialized to in the default implementation of IStats) instead of the actual value that's supposed to be there. How can I make make sure I am getting the correct data from the player? The mod is only meant to be single player if that changes anything

Edited by teh_black_d00m
Posted
46 minutes ago, teh_black_d00m said:

 


fontRenderer.drawString("Long Blade " + playerSkills.getStat(StatConstants.LONG_BLADE), centerX+40, centerY+90, 0x000000);

 

Where are you setting those StatConstants.LONG_BLADE?   maybe you are calling the drawString before the actual setting.

Posted

Are you syncing the values to the client? By default capability data is not synchronised between the server and client. 

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

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

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

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

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

Posted (edited)
2 hours ago, Cadiboo said:

Are you syncing the values to the client? By default capability data is not synchronised between the server and client. 

Probably not because I don't know how to do that haha. For each field in the default implementation of IStats I've done this

public class FatigueStorage implements IStorage<IStats>
{
	
	@Override
	public NBTBase writeNBT(Capability<IStats> capability, IStats instance, EnumFacing side)
	{
		final NBTTagCompound tag = new NBTTagCompound();
		
		tag.setFloat("fatigue", instance.getFatigue());
		
		return tag;
	}
	

	@Override
	public void readNBT(Capability<IStats> capability, IStats instance, EnumFacing side, NBTBase nbt)
	{
		
		final NBTTagCompound tag = (NBTTagCompound) nbt;

		instance.setFatigue(tag.getFloat("fatigue")); 
		
	}
	
	
}

Is that not enough? Does the data still need to be synced even if the mod is only multiplayer?

 

EDIT: I mean the EXACT OPPOSITE. its singleplayer only

Edited by teh_black_d00m
typo
Posted
2 hours ago, De Joker said:

Where are you setting those StatConstants.LONG_BLADE?   maybe you are calling the drawString before the actual setting.

Those are all static final variables that are set in the StatConstants class. They are just used as indexes for the arrays holding the actual data

Posted

You need to make a packet to sync your capability data, I would give an example, but all my implementations are horrible, a quick forum search should yield some good results. The basics of it are

- have a (logical sever side) packet that implements IMessage and IMessageHandler

- register that packet for the logical server in your network manager

- send the packet when you need to sync data

An example of a network manager can be found here, and it is instantiated here

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

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

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

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

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

Posted

Okay I watched this tutorial

Spoiler

 

and i think I i mostly understand how to send packets but I'm still not really sure when I'm supposed to send one. I also dont know why when I try to display my custom NBT data using a Gui its not synced. Here is a class that draws some bars displaying the player's health and fatigue(capability I made)
 

Spoiler

public class GUIHandler {
	

	@SubscribeEvent
	public void onRenderHealthBar(Pre event)
	{
		if (event.getType().equals(RenderGameOverlayEvent.ElementType.HEALTH))
		{
			event.setCanceled(true); // Cancels the rendering of the HEALTH bar. Take a look at all the different ElementType's  
		}
		
		if (event.getType().equals(RenderGameOverlayEvent.ElementType.ARMOR))
		{
			event.setCanceled(true);   
		}
			
	}
	
	private final ResourceLocation bar = new ResourceLocation(Reference.MOD_ID, "textures/gui/hpbar.png");
	private final ResourceLocation fatigueBar = new ResourceLocation(Reference.MOD_ID, "textures/gui/fatiguebar.png");
	private final int textureWidth = 102;
	private final int textureHeight = 8;
	private final int barWidth = 100;
	private final int barHeight = 6;
	
	@SubscribeEvent
    public void onRenderGui(RenderGameOverlayEvent.Post event)
    {
		if (event.getType() != ElementType.EXPERIENCE) return;
		
		Minecraft mc = Minecraft.getMinecraft();
		
		//render health bar
		mc.renderEngine.bindTexture(bar);
		float healthRatio = mc.player.getHealth() / mc.player.getMaxHealth(); 
		int currentWidth = (int)(barWidth * healthRatio);
		
		int maxHealthInt = (int) mc.player.getMaxHealth();
		int currentHealthInt = (int) mc.player.getHealth();
		
		String maxHealth = String.valueOf(maxHealthInt);
		String currentHealth  = String.valueOf(currentHealthInt);
		
		//int posX = event.getResolution().getScaledWidth() / 2 +10;
		//int posY = event.getResolution().getScaledHeight() - 48;
		
		mc.ingameGUI.drawTexturedModalRect(5, 220, 0, 0, textureWidth, textureHeight);
		mc.ingameGUI.drawTexturedModalRect(6, 220, 1, textureHeight, currentWidth, textureHeight);
		
		
		//render fatigue bar
		IStats fatigueValue = mc.player.getCapability(StatsProvider.STATS_CAPABILITY, null);
		mc.renderEngine.bindTexture(fatigueBar);
		float fatigueRatio = fatigueValue.getFatigue() / fatigueValue.getMaxFatigue();
		int currentWidthF = (int)(barWidth * fatigueRatio);
		
		int maxFatigueInt = (int) fatigueValue.getMaxFatigue();
		int currentFatigueInt = (int) fatigueValue.getFatigue();
		
		String maxFatigue = String.valueOf(maxFatigueInt);
		String currentFatigue = String.valueOf(currentFatigueInt);
		
		mc.ingameGUI.drawTexturedModalRect(5, 235, 0, 0, textureWidth, textureHeight);
		mc.ingameGUI.drawTexturedModalRect(6, 235, 1, textureHeight, currentWidthF, textureHeight);
		mc.ingameGUI.drawString(mc.fontRenderer, currentFatigue + "/" + maxFatigue, 45, 235, Integer.parseInt("FFAA00", 16));
		mc.ingameGUI.drawString(mc.fontRenderer, currentHealth + "/" + maxHealth, 45, 220, Integer.parseInt("FFAA00", 16));
		
		
    }
}

 

Here is code that restores the player's fatigue

Spoiler

/*
		//Handles the return rate of fatigue every tick
		EntityPlayer player = (EntityPlayer) event.getEntity();
		
		if(player.getCapability(StatsProvider.STATS_CAPABILITY, null).getFatigue() <  player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue())
		{
			float fFatigueReturnBase = 0.25F;
			float fFatigueReturnMult = 0.02F;
			float x = fFatigueReturnBase + fFatigueReturnMult * player.getCapability(StatsProvider.STATS_CAPABILITY, null).getStat(StatConstants.ENDURANCE);
			
			if (x + player.getCapability(StatsProvider.STATS_CAPABILITY, null).getFatigue() > player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue())
				player.getCapability(StatsProvider.STATS_CAPABILITY, null).setFatigue(player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue());
			else
				player.getCapability(StatsProvider.STATS_CAPABILITY, null).fill(x);
		}
		*/

 

I put that code in a packet and I know that its working like its supposed to (restoring the fatigue) but for some reason the fatigue bar is not being draw correctly to show that its working. It actually was working before when I wasn't using a packet. Any idea why this is happening?

Posted
6 minutes ago, diesieben07 said:

I have no idea what you mean by "putting that code in a packet". You can't put "code in a packet".

I mean to say that I moved that code I posted earlier so that its here now
 

Spoiler

public class MessageRestoreFatigue extends MessageBase<MessageRestoreFatigue>{

	@Override
	public void fromBytes(ByteBuf buf) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void toBytes(ByteBuf buf) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void handleClientSide(MessageRestoreFatigue message, EntityPlayer player) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void handleServerSide(MessageRestoreFatigue message, EntityPlayer player) {
		// do whatever you need to do
		if(player.getCapability(StatsProvider.STATS_CAPABILITY, null).getFatigue() <  player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue())
		{
			float fFatigueReturnBase = 0.25F;
			float fFatigueReturnMult = 0.02F;
			float x = fFatigueReturnBase + fFatigueReturnMult * player.getCapability(StatsProvider.STATS_CAPABILITY, null).getStat(StatConstants.ENDURANCE);
			
			if (x + player.getCapability(StatsProvider.STATS_CAPABILITY, null).getFatigue() > player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue())
				player.getCapability(StatsProvider.STATS_CAPABILITY, null).setFatigue(player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue());
			else
				player.getCapability(StatsProvider.STATS_CAPABILITY, null).fill(x);
			
			System.out.println("Fatigue is being restored");
		}
	}
	
}

 

And then I did this
 

Spoiler

@SubscribeEvent
	public void updateFatigue(LivingUpdateEvent event)
	{
		if(!(event.getEntity() instanceof EntityPlayer)) return;
		/*
		//Handles the return rate of fatigue every tick
		EntityPlayer player = (EntityPlayer) event.getEntity();
		
		if(player.getCapability(StatsProvider.STATS_CAPABILITY, null).getFatigue() <  player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue())
		{
			float fFatigueReturnBase = 0.25F;
			float fFatigueReturnMult = 0.02F;
			float x = fFatigueReturnBase + fFatigueReturnMult * player.getCapability(StatsProvider.STATS_CAPABILITY, null).getStat(StatConstants.ENDURANCE);
			
			if (x + player.getCapability(StatsProvider.STATS_CAPABILITY, null).getFatigue() > player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue())
				player.getCapability(StatsProvider.STATS_CAPABILITY, null).setFatigue(player.getCapability(StatsProvider.STATS_CAPABILITY, null).getMaxFatigue());
			else
				player.getCapability(StatsProvider.STATS_CAPABILITY, null).fill(x);
		}
		*/
		NetworkHandler.sendToServer(new MessageRestoreFatigue());
	}
	

 

I know it worked because it kept printing "Fatigue is being restored".

 

 

11 minutes ago, diesieben07 said:

For capability data that is always needed on the client (like in your case for the HUD [not GUI!]), you need to send the packet in the following cases:

  • PlayerLoggedInEvent
  • PlayerRespawnEvent
  • PlayerChangedDimensionEvent
  • Whenever the data changes. 

 

So am I correct in assuming that I need to send a packet in the above example (because I am changing the amount of fatigue the player has)? And if I send the packets correctly in the cases you mentioned my HUD will display the correct data right?

Posted
12 minutes ago, diesieben07 said:

Why did you do this?

I did that because I thought that's what you're supposed to do to send a packet (put the code into a class that implements IMessage and IMessageHandler) but maybe I'm still not quite understanding packets correctly. So for the example of restoring the player's fatigue I need to use that MessageRestoreFatigue class to send a packet right? I'm not sure of the correctly terminology here but I think I'm supposed to be sending data between the client and server so they are synced. Should I be using the toBytes and fromBytes methods to just send the data instead of doing what I did in the example (moving all the code into MessageRestoreFatigue)?

Posted (edited)

"Packets" are a conversion between runtime data and a binary serialization format. That's all.

 

Look at this example:

https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/ores/networking/ToClientMessageOreParticles.java

 

The only "code" that is there is writing to, and reading from, a ByteBuffer. Your MessageRestoreFatigue does fuckall: it writes no data and it reads no data and instead...gets the capability on the client and directly modifies the values there. What you should be doing, is sending a packet from the server to the client containing the fatigue value.

 

Your packet also does that on the networking thread, which is a major no-no.

Edited by Draco18s

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.

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

    • i did make sure prism was updated, and it is. the issue isn't just with 1.21.4, it's with a bunch of other versions, except 1.21 and 1.20.2.
    • then why when i delete immersive portals i still crash
    • When trying to start a server for ATM 10, this is listed in the cmd: AllTheLeaks: Listing stuck threads... Stuck Thread: pool-23-thread-1 Stuck Thread: pool-24-thread-1   I know this is neoforge but I cannot find anything online from anyone on any forums or videos regarding this error. This loops infinitely and I have tried different java versions, different launch args, and even removing some mods and configs folders. Here is the crash report:     Description: Exception in server tick loop java.lang.IllegalStateException: Failed to initialize server     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:671) ~[server-1.21.1-20240808.144430-srg.jar%23509!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:servercore.common.mixins.json:features.misc.MinecraftServerMixin from mod servercore,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:ponder.mixins.json:accessor.MinecraftServerAccessor from mod ponder,pl:mixin:APP:balm.neoforge.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:servercore.common.mixins.json:MinecraftServerMixin from mod servercore,pl:mixin:APP:kubejs.mixins.json:MinecraftServerMixin from mod kubejs,pl:mixin:APP:regions_unexplored.mixins.json:MinecraftServerMixin from mod regions_unexplored,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin from mod ae2,pl:mixin:APP:extended_industrialization.mixins.json:TeslaNetworkHolderMinecraftServerMixin from mod extended_industrialization,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:267) ~[server-1.21.1-20240808.144430-srg.jar%23509!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:servercore.common.mixins.json:features.misc.MinecraftServerMixin from mod servercore,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:ponder.mixins.json:accessor.MinecraftServerAccessor from mod ponder,pl:mixin:APP:balm.neoforge.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:servercore.common.mixins.json:MinecraftServerMixin from mod servercore,pl:mixin:APP:kubejs.mixins.json:MinecraftServerMixin from mod kubejs,pl:mixin:APP:regions_unexplored.mixins.json:MinecraftServerMixin from mod regions_unexplored,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin from mod ae2,pl:mixin:APP:extended_industrialization.mixins.json:TeslaNetworkHolderMinecraftServerMixin from mod extended_industrialization,pl:mixin:A}     at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- 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, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation     Memory: 2097134472 bytes (1999 MiB) / 5343543296 bytes (5096 MiB) up to 8589934592 bytes (8192 MiB)     CPUs: 20     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i9-10900KF CPU @ 3.70GHz     Identifier: Intel64 Family 6 Model 165 Stepping 5     Microarchitecture: Comet Lake     Frequency (GHz): 3.70     Number of physical packages: 1     Number of physical CPUs: 10     Number of logical CPUs: 20     Graphics card #0 name: NVIDIA GeForce RTX 3070     Graphics card #0 vendor: NVIDIA     Graphics card #0 VRAM (MiB): 8192.00     Graphics card #0 deviceId: VideoController1     Graphics card #0 versionInfo: 32.0.15.6094     Memory slot #0 capacity (MiB): 16384.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MiB): 16384.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MiB): 35343.33     Virtual memory used (MiB): 23594.82     Swap memory total (MiB): 2688.00     Swap memory used (MiB): 177.32     Space in storage for jna.tmpdir (MiB): <path not set>     Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>     Space in storage for io.netty.native.workdir (MiB): <path not set>     Space in storage for java.io.tmpdir (MiB): available: 207073.81, total: 953152.00     Space in storage for workdir (MiB): available: 207073.81, total: 953152.00     JVM Flags: 20 total; -Xms4G -Xmx8G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1     Server Running: true     Active Data Packs: create:dynamic_data, mod/the_bumblezone:datapacks/productive_bees_compat, vanilla, mod/explorify, mod_data, mod/betterdungeons (incompatible), mod/almanac, mod/simplemagnets, mod/integratedterminals,integratedterminalscompat (incompatible), mod/enderio_base, mod/mffs, mod/endercore, mod/neoforge, mod/modernfix (incompatible), mod/evilcraft,evilcraftcompat (incompatible), mod/yungsapi (incompatible), mod/mcwstairs (incompatible), mod/gateways, mod/rechiseled_chipped, mod/betterfortresses (incompatible), mod/cloth_config (incompatible), mod/sawmill (incompatible), mod/supplementaries (incompatible), mod/industrialforegoing (incompatible), mod/handcrafted, mod/repurposed_structures, mod/bcc, mod/camol, mod/heyberryshutup (incompatible), mod/integratedscripting (incompatible), mod/spark (incompatible), mod/yungsextras (incompatible), mod/omegaconfig, mod/naturesaura (incompatible), mod/mcwroofs (incompatible), mod/betterendisland (incompatible), mod/the_bumblezone, mod/tombstone, mod/enderio_machines, mod/journeymap_api (incompatible), mod/sfm (incompatible), mod/mcwlights (incompatible), mod/betterjungletemples (incompatible), mod/byzantine (incompatible), mod/smartbrainlib (incompatible), mod/rechiseled, mod/attributefix (incompatible), mod/caelus (incompatible), mod/allthecompressed (incompatible), mod/mcwholidays (incompatible), mod/epherolib (incompatible), mod/laserbridges (incompatible), mod/compactmachines (incompatible), mod/farmingforblockheads (incompatible), mod/additional_lights, mod/fusion, mod/edivadlib, mod/integratedcrafting (incompatible), mod/dungeons_arise, mod/terrablender (incompatible), mod/livingthings, mod/pamhc2crops (incompatible), mod/alltheleaks, mod/cleanswing, mod/corgilib (incompatible), mod/sushigocrafting (incompatible), mod/domum_ornamentum, mod/flywheel (incompatible), mod/luminax, mod/experiencelib, mod/bhc, mod/securitycraft, mod/almostunified (incompatible), mod/wits, mod/immediatelyfast (incompatible), mod/structory_towers, mod/appleskin (incompatible), mod/lootr, mod/occultism, mod/allthetweaks (incompatible), mod/rebind_narrator (incompatible), mod/cosmeticarmorreworked (incompatible), mod/morered, mod/kuma_api (incompatible), mod/advancedperipherals (incompatible), mod/towntalk, mod/fireproofboats (incompatible), mod/betteroceanmonuments (incompatible), mod/sophisticatedcore (incompatible), mod/glassential (incompatible), mod/placebo, mod/wstweaks, mod/fastfurnace, mod/cobweb (incompatible), mod/bookshelf (incompatible), mod/sophisticatedbackpacks (incompatible), mod/immeng, mod/mcwdoors (incompatible), mod/moreredxcctcompat, mod/utilitarian (incompatible), mod/fzzy_config, mod/chipped, mod/mcwbridges (incompatible), mod/hostilenetworks, mod/jearchaeology (incompatible), mod/fuelgoeshere (incompatible), mod/simplylight (incompatible), mod/industrialforegoingsouls (incompatible), mod/lionfishapi (incompatible), mod/memorysettings (incompatible), mod/cataclysm (incompatible), mod/blockui, mod/structurize, mod/tiab (incompatible), mod/smithingtemplateviewer, mod/mysticalcustomization, mod/elevatorid, mod/bridgingmod (incompatible), mod/hardenedarmadillos (incompatible), mod/aiimprovements, mod/cupboard (incompatible), mod/ars_ocultas (incompatible), mod/undergarden, mod/monolib (incompatible), mod/disenchanting_table (incompatible), mod/framework (incompatible), mod/bwncr (incompatible), mod/observable (incompatible), mod/atlas_api, mod/pamhc2trees (incompatible), mod/redstonepen (incompatible), mod/dyenamics (incompatible), mod/commonnetworking (incompatible), mod/reap (incompatible), mod/productivemetalworks (incompatible), mod/illagerwarship, mod/clumps (incompatible), mod/artifacts, mod/explorerscompass (incompatible), mod/mininggadgets (incompatible), mod/theurgy_kubejs, mod/trophymanager (incompatible), mod/akashictome (incompatible), mod/xycraft_core (incompatible), mod/repeatable_trial_vaults (incompatible), mod/mysticalagriculture, mod/craftingtweaks (incompatible), mod/endermanoverhaul, mod/apothic_spawners, mod/enderio_conduits, mod/ftbjeiextras, mod/enderio, mod/easy_villagers (incompatible), mod/reliquary (incompatible), mod/mes (incompatible), mod/polyeng, mod/fastbench, mod/fluxnetworks (incompatible), mod/irons_spellbooks (incompatible), mod/buildinggadgets2 (incompatible), mod/minecolonies, mod/pylons, mod/ferritecore (incompatible), mod/functionalstorage (incompatible), mod/modularrouters, mod/rarcompat (incompatible), mod/overloadedarmorbar (incompatible), mod/flickerfix, mod/productivetrees (incompatible), mod/supermartijn642configlib (incompatible), mod/quarryplus (incompatible), mod/additionalentityattributes, mod/underground_villages, mod/variantsandventures (incompatible), mod/playeranimator, mod/ponder (incompatible), mod/mcwwindows (incompatible), mod/ironjetpacks, mod/ctm, mod/everythingcopper (incompatible), mod/powah (incompatible), mod/rangedpumps (incompatible), mod/ae2importexportcard, mod/balm (incompatible), mod/prickle (incompatible), mod/moderndynamics, mod/crash_assistant (incompatible), mod/mysticalagradditions, mod/ctov, mod/eternal_starlight (incompatible), mod/athena, mod/stylecolonies, mod/novillagerdm, mod/lmft (incompatible), mod/alltheores, mod/glodium (incompatible), mod/torchmaster (incompatible), mod/sussysniffers, mod/ironfurnaces, mod/mcwtrpdoors (incompatible), mod/silentgear, mod/supermartijn642corelib, mod/apothic_attributes, mod/resourcefulconfig, mod/servercore (incompatible), mod/curios (incompatible), mod/searchables (incompatible), mod/measurements, mod/deimos (incompatible), mod/mcwfurnitures (incompatible), mod/apothic_enchanting, mod/apotheosis, mod/infiniverse, mod/codechickenlib (incompatible), mod/bettermineshafts (incompatible), mod/crafting_on_a_stick (incompatible), mod/ae2jeiintegration, mod/mekanismcovers, mod/harvest_with_ease (incompatible), mod/formationsnether, mod/jei (incompatible), mod/multipiston, mod/lithostitched, mod/mekanism, mod/laserio (incompatible), mod/mekanismgenerators, mod/gmut (incompatible), mod/invtweaks (incompatible), mod/naturescompass (incompatible), mod/jumpboat (incompatible), mod/catjammies (incompatible), mod/pneumaticcraft, mod/formations, mod/crystalix, mod/mcwpaths (incompatible), mod/zerocore (incompatible), mod/formationsoverworld, mod/mousetweaks (incompatible), mod/immersiveengineering (incompatible), mod/nochatreports, mod/allthemodium, mod/ohthetreesyoullgrow (incompatible), mod/spectrelib (incompatible), mod/kotlinforforge (incompatible), mod/pipez (incompatible), mod/integrateddynamics,integrateddynamicscompat (incompatible), mod/pamhc2foodcore, mod/megacells, mod/itemcollectors, mod/imfast, mod/polymorph (incompatible), mod/railcraft, mod/enderio_conduits_modded, mod/showcaseitem, mod/connectedglass, mod/constructionstick (incompatible), mod/hyperbox, mod/aquaculture (incompatible), mod/mns (incompatible), mod/cristellib, mod/cyclopscore (incompatible), mod/betterwitchhuts (incompatible), mod/netherportalfix (incompatible), mod/geckolib, mod/biomeswevegone, mod/creeperoverhaul, mod/ars_nouveau (incompatible), mod/ars_elemental (incompatible), mod/not_enough_glyphs (incompatible), mod/pocketstorage (incompatible), mod/connectivity (incompatible), mod/cookingforblockheads (incompatible), mod/controlling (incompatible), mod/potionsmaster (incompatible), mod/storagedelight (incompatible), mod/relics (incompatible), mod/generatorgalore (incompatible), mod/nuggets (incompatible), mod/herbsandharvest, mod/grandpower, mod/dummmmmmy (incompatible), mod/twilightforest, mod/mob_grinding_utils (incompatible), mod/arseng, mod/modular_machinery_reborn, mod/modular_machinery_reborn_mekanism, mod/modular_machinery_reborn_ars, mod/farmersdelight (incompatible), mod/entangled, mod/commoncapabilities (incompatible), mod/crashutilities (incompatible), mod/getittogetherdrops, mod/mcwfences (incompatible), mod/xycraft_world (incompatible), mod/xycraft_machines (incompatible), mod/wirelesschargers, mod/pamhc2foodextended (incompatible), mod/actuallyadditions (incompatible), mod/patchouli (incompatible), mod/ars_additions (incompatible), mod/allthearcanistgear, mod/integratedtunnels,integratedtunnelscompat (incompatible), mod/ftbultimine (incompatible), mod/betterstrongholds (incompatible), mod/mifa (incompatible), mod/resourcefullib, mod/mekanismtools, mod/deeperdarker, mod/architectury (incompatible), mod/mostructures, mod/accelerateddecay (incompatible), mod/ftblibrary (incompatible), mod/ftbfiltersystem (incompatible), mod/ftbteams (incompatible), mod/ftbranks (incompatible), mod/ftbessentials (incompatible), mod/ftbchunks (incompatible), mod/jamlib (incompatible), mod/ftbquests (incompatible), mod/computercraft (incompatible), mod/bigreactors (incompatible), mod/refurbished_furniture (incompatible), mod/productivebees (incompatible), mod/trashcans, mod/inventoryessentials (incompatible), mod/justdirethings, mod/polylib (incompatible), mod/shrink (incompatible), mod/t_and_t, mod/merrymaking, mod/letmedespawn, mod/yeetusexperimentus (incompatible), mod/irons_jewelry, mod/villagesandpillages (incompatible), mod/rhino, mod/kubejs (incompatible), mod/ftbxmodcompat (incompatible), mod/occultism_kubejs, mod/rootsclassic (incompatible), mod/cucumber, mod/trashslot (incompatible), mod/amendments (incompatible), mod/blueflame (incompatible), mod/sophisticatedstorage (incompatible), mod/octolib, mod/mss (incompatible), mod/allthewizardgear (incompatible), mod/productivelib (incompatible), mod/create (incompatible), mod/framedblocks, mod/waystones (incompatible), mod/structory, mod/journeymap (incompatible), mod/comforts (incompatible), mod/dimstorage, mod/dungeoncrawl, mod/charginggadgets (incompatible), mod/cobblegengalore, mod/xycraft_override, mod/mcjtylib, mod/rftoolsbase, mod/rftoolspower, mod/rftoolsbuilder, mod/restrictions, mod/xnet, mod/betterdeserttemples (incompatible), mod/guideme, mod/mahoutsukai (incompatible), mod/enderstorage (incompatible), mod/factory_blocks (incompatible), mod/enchdesc (incompatible), mod/moonlight (incompatible), mod/cloudglass, mod/toolbelt (incompatible), mod/titanium, mod/regions_unexplored (incompatible), mod/silentlib (incompatible), mod/jade (incompatible), mod/ae2 (incompatible), mod/soulplied_energistics, mod/aeinfinitybooster (incompatible), mod/ae2ct, mod/ae2netanalyser (incompatible), mod/ae2wtlib (incompatible), mod/extendedae (incompatible), mod/ae2wtlib_api, mod/advanced_ae (incompatible), mod/appflux (incompatible), mod/merequester, mod/modern_industrialization, mod/tesseract_api, mod/extended_industrialization, mod/forbidden_arcanus (incompatible), mod/valhelsia_core (incompatible), mod/bibliowoods, mod/bibliocraft, mod/enderio_armory, mod/theurgy, mod/stevescarts (incompatible), mod/treetap (incompatible), mod/nullscape, mod/modonomicon (incompatible), mod/cryonicconfig, mod/mvs (incompatible), mod/chisel (incompatible), mod/yet_another_config_lib_v3 (incompatible), mod/solcarrot (incompatible), mod/moredragoneggs (incompatible), mod/appmek (incompatible), mod/expandability, mod/xtonesreworked (incompatible), mod/sophisticatedstorageinmotion (incompatible), sawmill:sawmill_recipes, supplementaries:generated_pack, resources/t_and_t_waystones_patch, modern_industrialization/generated     Available Data Packs: bundle, trade_rebalance, vanilla, mod/accelerateddecay (incompatible), mod/actuallyadditions (incompatible), mod/additional_lights, mod/additionalentityattributes, mod/advanced_ae (incompatible), mod/advancedperipherals (incompatible), mod/ae2 (incompatible), mod/ae2ct, mod/ae2importexportcard, mod/ae2jeiintegration, mod/ae2netanalyser (incompatible), mod/ae2wtlib (incompatible), mod/ae2wtlib_api, mod/aeinfinitybooster (incompatible), mod/aiimprovements, mod/akashictome (incompatible), mod/allthearcanistgear, mod/allthecompressed (incompatible), mod/alltheleaks, mod/allthemodium, mod/alltheores, mod/allthetweaks (incompatible), mod/allthewizardgear (incompatible), mod/almanac, mod/almostunified (incompatible), mod/amendments (incompatible), mod/apotheosis, mod/apothic_attributes, mod/apothic_enchanting, mod/apothic_spawners, mod/appflux (incompatible), mod/appleskin (incompatible), mod/appmek (incompatible), mod/aquaculture (incompatible), mod/architectury (incompatible), mod/ars_additions (incompatible), mod/ars_elemental (incompatible), mod/ars_nouveau (incompatible), mod/ars_ocultas (incompatible), mod/arseng, mod/artifacts, mod/athena, mod/atlas_api, mod/attributefix (incompatible), mod/balm (incompatible), mod/bcc, mod/betterdeserttemples (incompatible), mod/betterdungeons (incompatible), mod/betterendisland (incompatible), mod/betterfortresses (incompatible), mod/betterjungletemples (incompatible), mod/bettermineshafts (incompatible), mod/betteroceanmonuments (incompatible), mod/betterstrongholds (incompatible), mod/betterwitchhuts (incompatible), mod/bhc, mod/bibliocraft, mod/bibliowoods, mod/bigreactors (incompatible), mod/biomeswevegone, mod/blockui, mod/blueflame (incompatible), mod/bookshelf (incompatible), mod/bridgingmod (incompatible), mod/buildinggadgets2 (incompatible), mod/bwncr (incompatible), mod/byzantine (incompatible), mod/caelus (incompatible), mod/camol, mod/cataclysm (incompatible), mod/catjammies (incompatible), mod/charginggadgets (incompatible), mod/chipped, mod/chisel (incompatible), mod/cleanswing, mod/cloth_config (incompatible), mod/cloudglass, mod/clumps (incompatible), mod/cobblegengalore, mod/cobweb (incompatible), mod/codechickenlib (incompatible), mod/comforts (incompatible), mod/commoncapabilities (incompatible), mod/commonnetworking (incompatible), mod/compactmachines (incompatible), mod/computercraft (incompatible), mod/connectedglass, mod/connectivity (incompatible), mod/constructionstick (incompatible), mod/controlling (incompatible), mod/cookingforblockheads (incompatible), mod/corgilib (incompatible), mod/cosmeticarmorreworked (incompatible), mod/crafting_on_a_stick (incompatible), mod/craftingtweaks (incompatible), mod/crash_assistant (incompatible), mod/crashutilities (incompatible), mod/create (incompatible), mod/creeperoverhaul, mod/cristellib, mod/cryonicconfig, mod/crystalix, mod/ctm, mod/ctov, mod/cucumber, mod/cupboard (incompatible), mod/curios (incompatible), mod/cyclopscore (incompatible), mod/deeperdarker, mod/deimos (incompatible), mod/dimstorage, mod/disenchanting_table (incompatible), mod/domum_ornamentum, mod/dummmmmmy (incompatible), mod/dungeoncrawl, mod/dungeons_arise, mod/dyenamics (incompatible), mod/easy_villagers (incompatible), mod/edivadlib, mod/elevatorid, mod/enchdesc (incompatible), mod/endercore, mod/enderio, mod/enderio_armory, mod/enderio_base, mod/enderio_conduits, mod/enderio_conduits_modded, mod/enderio_machines, mod/endermanoverhaul, mod/enderstorage (incompatible), mod/entangled, mod/epherolib (incompatible), mod/eternal_starlight (incompatible), mod/everythingcopper (incompatible), mod/evilcraft,evilcraftcompat (incompatible), mod/expandability, mod/experiencelib, mod/explorerscompass (incompatible), mod/explorify, mod/extended_industrialization, mod/extendedae (incompatible), mod/factory_blocks (incompatible), mod/farmersdelight (incompatible), mod/farmingforblockheads (incompatible), mod/fastbench, mod/fastfurnace, mod/ferritecore (incompatible), mod/fireproofboats (incompatible), mod/flickerfix, mod/fluxnetworks (incompatible), mod/flywheel (incompatible), mod/forbidden_arcanus (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/ftbquests (incompatible), mod/ftbranks (incompatible), mod/ftbteams (incompatible), mod/ftbultimine (incompatible), mod/ftbxmodcompat (incompatible), mod/fuelgoeshere (incompatible), mod/functionalstorage (incompatible), mod/fusion, mod/fzzy_config, mod/gateways, mod/geckolib, mod/generatorgalore (incompatible), mod/getittogetherdrops, mod/glassential (incompatible), mod/glodium (incompatible), mod/gmut (incompatible), mod/grandpower, mod/guideme, mod/handcrafted, mod/hardenedarmadillos (incompatible), mod/harvest_with_ease (incompatible), mod/herbsandharvest, mod/heyberryshutup (incompatible), mod/hostilenetworks, mod/hyperbox, mod/illagerwarship, mod/imfast, mod/immediatelyfast (incompatible), mod/immeng, mod/immersiveengineering (incompatible), mod/industrialforegoing (incompatible), mod/industrialforegoingsouls (incompatible), mod/infiniverse, mod/integratedcrafting (incompatible), mod/integrateddynamics,integrateddynamicscompat (incompatible), mod/integratedscripting (incompatible), mod/integratedterminals,integratedterminalscompat (incompatible), mod/integratedtunnels,integratedtunnelscompat (incompatible), mod/inventoryessentials (incompatible), mod/invtweaks (incompatible), mod/ironfurnaces, mod/ironjetpacks, mod/irons_jewelry, mod/irons_spellbooks (incompatible), mod/itemcollectors, mod/jade (incompatible), mod/jamlib (incompatible), mod/jearchaeology (incompatible), mod/jei (incompatible), mod/journeymap (incompatible), mod/journeymap_api (incompatible), mod/jumpboat (incompatible), mod/justdirethings, mod/kotlinforforge (incompatible), mod/kubejs (incompatible), mod/kuma_api (incompatible), mod/laserbridges (incompatible), mod/laserio (incompatible), mod/letmedespawn, mod/lionfishapi (incompatible), mod/lithostitched, mod/livingthings, mod/lmft (incompatible), mod/lootr, mod/luminax, mod/mahoutsukai (incompatible), mod/mcjtylib, mod/mcwbridges (incompatible), mod/mcwdoors (incompatible), mod/mcwfences (incompatible), mod/mcwfurnitures (incompatible), mod/mcwholidays (incompatible), mod/mcwlights (incompatible), mod/mcwpaths (incompatible), mod/mcwroofs (incompatible), mod/mcwstairs (incompatible), mod/mcwtrpdoors (incompatible), mod/mcwwindows (incompatible), mod/measurements, mod/megacells, mod/mekanism, mod/mekanismcovers, mod/mekanismgenerators, mod/mekanismtools, mod/memorysettings (incompatible), mod/merequester, mod/merrymaking, mod/mes (incompatible), mod/mffs, mod/mifa (incompatible), mod/minecolonies, mod/mininggadgets (incompatible), mod/mns (incompatible), mod/mob_grinding_utils (incompatible), mod/modern_industrialization, mod/moderndynamics, mod/modernfix (incompatible), mod/modonomicon (incompatible), mod/modular_machinery_reborn, mod/modular_machinery_reborn_ars, mod/modular_machinery_reborn_mekanism, mod/modularrouters, mod/monolib (incompatible), mod/moonlight (incompatible), mod/moredragoneggs (incompatible), mod/morered, mod/moreredxcctcompat, mod/mostructures, mod/mousetweaks (incompatible), mod/mss (incompatible), mod/multipiston, mod/mvs (incompatible), mod/mysticalagradditions, mod/mysticalagriculture, mod/mysticalcustomization, mod/naturesaura (incompatible), mod/naturescompass (incompatible), mod/neoforge, mod/netherportalfix (incompatible), mod/nochatreports, mod/not_enough_glyphs (incompatible), mod/novillagerdm, mod/nuggets (incompatible), mod/nullscape, mod/observable (incompatible), mod/occultism, mod/occultism_kubejs, mod/octolib, mod/ohthetreesyoullgrow (incompatible), mod/omegaconfig, mod/overloadedarmorbar (incompatible), mod/pamhc2crops (incompatible), mod/pamhc2foodcore, mod/pamhc2foodextended (incompatible), mod/pamhc2trees (incompatible), mod/patchouli (incompatible), mod/pipez (incompatible), mod/placebo, mod/playeranimator, mod/pneumaticcraft, mod/pocketstorage (incompatible), mod/polyeng, mod/polylib (incompatible), mod/polymorph (incompatible), mod/ponder (incompatible), mod/potionsmaster (incompatible), mod/powah (incompatible), mod/prickle (incompatible), mod/productivebees (incompatible), mod/productivelib (incompatible), mod/productivemetalworks (incompatible), mod/productivetrees (incompatible), mod/pylons, mod/quarryplus (incompatible), mod/railcraft, mod/rangedpumps (incompatible), mod/rarcompat (incompatible), mod/reap (incompatible), mod/rebind_narrator (incompatible), mod/rechiseled, mod/rechiseled_chipped, mod/redstonepen (incompatible), mod/refurbished_furniture (incompatible), mod/regions_unexplored (incompatible), mod/relics (incompatible), mod/reliquary (incompatible), mod/repeatable_trial_vaults (incompatible), mod/repurposed_structures, mod/resourcefulconfig, mod/resourcefullib, mod/restrictions, mod/rftoolsbase, mod/rftoolsbuilder, mod/rftoolspower, mod/rhino, mod/rootsclassic (incompatible), mod/sawmill (incompatible), mod/searchables (incompatible), mod/securitycraft, mod/servercore (incompatible), mod/sfm (incompatible), mod/showcaseitem, mod/shrink (incompatible), mod/silentgear, mod/silentlib (incompatible), mod/simplemagnets, mod/simplylight (incompatible), mod/smartbrainlib (incompatible), mod/smithingtemplateviewer, mod/solcarrot (incompatible), mod/sophisticatedbackpacks (incompatible), mod/sophisticatedcore (incompatible), mod/sophisticatedstorage (incompatible), mod/sophisticatedstorageinmotion (incompatible), mod/soulplied_energistics, mod/spark (incompatible), mod/spectrelib (incompatible), mod/stevescarts (incompatible), mod/storagedelight (incompatible), mod/structory, mod/structory_towers, mod/structurize, mod/stylecolonies, mod/supermartijn642configlib (incompatible), mod/supermartijn642corelib, mod/supplementaries (incompatible), mod/sushigocrafting (incompatible), mod/sussysniffers, mod/t_and_t, mod/terrablender (incompatible), mod/tesseract_api, mod/the_bumblezone, mod/theurgy, mod/theurgy_kubejs, mod/tiab (incompatible), mod/titanium, mod/tombstone, mod/toolbelt (incompatible), mod/torchmaster (incompatible), mod/towntalk, mod/trashcans, mod/trashslot (incompatible), mod/treetap (incompatible), mod/trophymanager (incompatible), mod/twilightforest, mod/undergarden, mod/underground_villages, mod/utilitarian (incompatible), mod/valhelsia_core (incompatible), mod/variantsandventures (incompatible), mod/villagesandpillages (incompatible), mod/waystones (incompatible), mod/wirelesschargers, mod/wits, mod/wstweaks, mod/xnet, mod/xtonesreworked (incompatible), mod/xycraft_core (incompatible), mod/xycraft_machines (incompatible), mod/xycraft_override, mod/xycraft_world (incompatible), mod/yeetusexperimentus (incompatible), mod/yet_another_config_lib_v3 (incompatible), mod/yungsapi (incompatible), mod/yungsextras (incompatible), mod/zerocore (incompatible), mod_data, sawmill:sawmill_recipes, supplementaries:generated_pack, mod/the_bumblezone:datapacks/productive_bees_compat, mod/compactmachines:data/compactmachines/datapacks/basic_templates, mod/compactmachines:data/compactmachines/datapacks/room_upgrades, resources/t_and_t_waystones_patch, create:dynamic_data, modern_industrialization/generated     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     World Seed: 6053381107725581850     Is Modded: Definitely; Server brand changed to 'neoforge'     Type: Dedicated Server (map_server.txt)     ModLauncher: 11.0.4+main.d2e20e43     ModLauncher launch target: forgeserver     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]         [email protected]         [email protected]         [email protected]         [email protected]     Mod List:          accelerated-decay-neoforge-21.0.0.jar             |Accelerated Decay             |accelerateddecay              |21.0.0              |Manifest: NOSIGNATURE         actuallyadditions-1.3.16+mc1.21.1.jar             |Actually Additions            |actuallyadditions             |1.3.16              |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         AdvancedPeripherals-1.21.1-0.7.49a.jar            |Advanced Peripherals          |advancedperipherals           |0.7.49a             |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         ae2ct-1.21.1-1.0.5.jar                            |AE2:Crafting Tree             |ae2ct                         |1.21.1-1.0.5        |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         aeinfinitybooster-neoforge-1.21.1-1.0.0.49.jar    |AEInfinityBooster             |aeinfinitybooster             |1.21.1-1.0.0.49     |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         allthewizardgear-1.21-1.1.9.jar                   |All the Wizard Gear           |allthewizardgear              |1.21-1.1.9          |Manifest: NOSIGNATURE         allthecompressed-1.21.1-4.2.0.jar                 |AllTheCompressed              |allthecompressed              |4.2.0               |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         allthetweaks-1.21-2.6.0.jar                       |AllTheTweaks                  |allthetweaks                  |2.6.0               |Manifest: NOSIGNATURE         almanac-1.21.x-neoforge-1.0.2.jar                 |Almanac                       |almanac                       |1.0.2               |Manifest: NOSIGNATURE         almostunified-neoforge-1.21.1-1.2.3.jar           |AlmostUnified                 |almostunified                 |1.21.1-1.2.3        |Manifest: NOSIGNATURE         amendments-1.21-1.2.24-neoforge.jar               |Amendments                    |amendments                    |1.21-1.2.24         |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.5-beta.jar               |Applied Energistics 2         |ae2                           |19.2.5-beta         |Manifest: NOSIGNATURE         Applied-Mekanistics-1.6.2.jar                     |Applied Mekanistics           |appmek                        |1.6.2               |Manifest: NOSIGNATURE         AppliedFlux-1.21-2.0.5-neoforge.jar               |AppliedFlux                   |appflux                       |1.21-2.0.5-neoforge |Manifest: NOSIGNATURE         Aquaculture-1.21.1-2.7.13.jar                     |Aquaculture 2                 |aquaculture                   |2.7.13              |Manifest: NOSIGNATURE         architectury-13.0.8-neoforge.jar                  |Architectury                  |architectury                  |13.0.8              |Manifest: NOSIGNATURE         ars_additions-1.21.1-21.2.0.jar                   |Ars Additions                 |ars_additions                 |1.21.1-21.2.0       |Manifest: NOSIGNATURE         ars_elemental-1.21.1-0.7.2.5.jar                  |Ars Elemental                 |ars_elemental                 |0.7.2.5             |Manifest: NOSIGNATURE         ars_nouveau-1.21.1-5.5.1-all.jar                  |Ars Nouveau                   |ars_nouveau                   |5.5.1               |Manifest: NOSIGNATURE         ars_ocultas-1.21.1-2.1.0.jar                      |Ars Ocultas                   |ars_ocultas                   |2.1.0               |Manifest: NOSIGNATURE         arseng-2.1.1-beta.jar                             |Ars Énergistique              |arseng                        |2.1.1-beta          |Manifest: NOSIGNATURE         artifacts-neoforge-12.0.5.jar                     |Artifacts                     |artifacts                     |12.0.5              |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.31.jar                  |Balm                          |balm                          |21.0.31             |Manifest: NOSIGNATURE         baubley-heart-canisters-1.21.1-1.2.2.jar          |Baubley Heart Canisters       |bhc                           |1.21.1-1.2.2        |Manifest: NOSIGNATURE         bcc-21.1.3+mc1.21.1.jar                           |Better Compatibility Checker  |bcc                           |21.1.3              |Manifest: NOSIGNATURE         bibliocraft-1.21.1-1.4.1.jar                      |Bibliocraft Legacy            |bibliocraft                   |1.4.1               |Manifest: NOSIGNATURE         bibliowoods-1.21.1-1.4.0.jar                      |Bibliowoods Legacy            |bibliowoods                   |1.4.0               |Manifest: NOSIGNATURE         blueflame-1.21.1-1.1.1.jar                        |Blue Flame Burning            |blueflame                     |1.21.1-1.1.1        |Manifest: NOSIGNATURE         bookshelf-neoforge-1.21.1-21.1.50.jar             |Bookshelf                     |bookshelf                     |21.1.50             |Manifest: NOSIGNATURE         BridgingMod-2.6.2+1.21.1.neoforge-release.jar     |Bridging Mod                  |bridgingmod                   |2.6.2+1.21.1        |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         camol-1.21.1-0.2.1.jar                            |Camol                         |camol                         |1.21.1-0.2.1        |Manifest: NOSIGNATURE         catjammies-1.21-1.7.1.jar                         |CatJammies                    |catjammies                    |1.21-1.7.1          |Manifest: NOSIGNATURE         cc-tweaked-1.21.1-forge-1.115.1.jar               |CC: Tweaked                   |computercraft                 |1.115.1             |Manifest: NOSIGNATURE         charginggadgets-1.14.1.jar                        |Charging Gadgets              |charginggadgets               |1.14.1              |Manifest: NOSIGNATURE         chipped-neoforge-1.21.1-4.0.2.jar                 |Chipped                       |chipped                       |4.0.2               |Manifest: NOSIGNATURE         chisel-neoforge-2.0.0+mc1.21.1.jar                |Chisel Reborn                 |chisel                        |2.0.0+mc1.21.1      |Manifest: NOSIGNATURE         [neoforge]ctov-3.5.6.jar                          |ChoiceTheorem's Overhauled Vil|ctov                          |3.5.6               |Manifest: NOSIGNATURE         cleanswing-1.9.jar                                |Clean Swing                   |cleanswing                    |1.9                 |Manifest: NOSIGNATURE         cloth-config-15.0.140-neoforge.jar                |Cloth Config v15 API          |cloth_config                  |15.0.140            |Manifest: NOSIGNATURE         CloudGlass-1.21.1-1.0.1.jar                       |Cloud Glass                   |cloudglass                    |1.0.1               |Manifest: NOSIGNATURE         Clumps-neoforge-1.21.1-19.0.0.1.jar               |Clumps                        |clumps                        |19.0.0.1            |Manifest: NOSIGNATURE         cobblegengalore-1.21.1-0.2.0.jar                  |Cobblegen Galore              |cobblegengalore               |1.21.1-0.2.0        |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         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         commoncapabilities-1.21.1-neoforge-2.9.7-197.jar  |CommonCapabilities            |commoncapabilities            |2.9.7               |Manifest: NOSIGNATURE         compactmachines-neoforge-7.0.22.jar               |Compact Machines              |compactmachines               |7.0.22              |Manifest: NOSIGNATURE         connectedglass-1.1.12-neoforge-mc1.21.jar         |Connected Glass               |connectedglass                |1.1.12              |Manifest: NOSIGNATURE         CTM-1.21-1.2.1+3.jar                              |ConnectedTexturesMod          |ctm                           |1.21-1.2.1+3        |Manifest: NOSIGNATURE         connectivity-1.21.1-7.1.jar                       |Connectivity Mod              |connectivity                  |7.1                 |Manifest: NOSIGNATURE         ConstructionSticks-1.21.1-1.1.5.jar               |Construction Sticks           |constructionstick             |1.1.5               |Manifest: NOSIGNATURE         Controlling-neoforge-1.21.1-19.0.4.jar            |Controlling                   |controlling                   |19.0.4              |Manifest: NOSIGNATURE         cookingforblockheads-neoforge-1.21.1-21.1.12.jar  |Cooking for Blockheads        |cookingforblockheads          |21.1.12             |Manifest: NOSIGNATURE         tombstone-neoforge-1.21.1-9.2.8.jar               |Corail Tombstone              |tombstone                     |9.2.8               |Manifest: NOSIGNATURE         Corgilib-NeoForge-1.21.1-5.0.0.3.jar              |CorgiLib                      |corgilib                      |5.0.0.3             |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         crafting_on_a_stick-1.21.0.1.jar                  |Crafting On A Stick           |crafting_on_a_stick           |1.21.0.1            |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         crashutilities-9.0.4.jar                          |Crash Utilities               |crashutilities                |9.0.4               |Manifest: NOSIGNATURE         create-1.21.1-6.0.3.jar                           |Create                        |create                        |6.0.3               |Manifest: NOSIGNATURE         CreeperOverhaul-neoforge-1.21.1-4.0.6.jar         |Creeper Overhaul              |creeperoverhaul               |4.0.6               |Manifest: NOSIGNATURE         cristellib-neoforge-1.2.8.jar                     |Cristel Lib                   |cristellib                    |1.2.8               |Manifest: NOSIGNATURE         cryonicconfig-neoforge-1.0.0+mc1.21.4.jar         |Cryonic Config                |cryonicconfig                 |1.0.0+mc1.21.4      |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         cyclopscore-1.21.1-neoforge-1.25.7.jar            |Cyclops Core                  |cyclopscore                   |1.25.7              |Manifest: NOSIGNATURE         deeperdarker-neoforge-1.21-1.3.4.jar              |Deeper and Darker             |deeperdarker                  |1.3.4               |Manifest: NOSIGNATURE         deimos-1.21.1-neoforge-2.1.jar                    |Deimos                        |deimos                        |2.1                 |Manifest: NOSIGNATURE         DimStorage-1.21-9.0.2.jar                         |DimStorage                    |dimstorage                    |9.0.2               |Manifest: NOSIGNATURE         disenchanting_table-merged-1.21.1-3.1.0.jar       |Dis-Enchanting Table          |disenchanting_table           |3.1.0               |Manifest: NOSIGNATURE         domum_ornamentum-1.0.204-1.21.1-snapshot.jar      |Domum Ornamentum              |domum_ornamentum              |1.0.204-1.21.1-snaps|Manifest: NOSIGNATURE         DungeonCrawl-NeoForge-1.21-2.3.15.jar             |Dungeon Crawl                 |dungeoncrawl                  |2.3.15              |Manifest: NOSIGNATURE         dyenamics-1.21.1-3.3.0.jar                        |Dyenamics                     |dyenamics                     |1.21.1-3.3.0        |Manifest: NOSIGNATURE         easy-villagers-neoforge-1.21.1-1.1.23.jar         |Easy Villagers                |easy_villagers                |1.21.1-1.1.23       |Manifest: NOSIGNATURE         EdivadLib-1.21-3.0.0.jar                          |EdivadLib                     |edivadlib                     |3.0.0               |Manifest: NOSIGNATURE         elevatorid-neoforge-1.21.1-1.11.4.jar             |ElevatorMod                   |elevatorid                    |1.21.1-1.11.4       |Manifest: NOSIGNATURE         enchdesc-neoforge-1.21.1-21.1.5.jar               |EnchantmentDescriptions       |enchdesc                      |21.1.5              |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         endermanoverhaul-neoforge-1.21.1-2.0.2.jar        |Enderman Overhaul             |endermanoverhaul              |2.0.2               |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         entangled-1.3.20a-neoforge-mc1.21.jar             |Entangled                     |entangled                     |1.3.20+a            |Manifest: NOSIGNATURE         EpheroLib-1.21.1-NEO-FORGE-1.2.0.jar              |EpheroLib                     |epherolib                     |1.2.0               |Manifest: NOSIGNATURE         eternalstarlight-0.4.1+1.21.1+neoforge.jar        |Eternal Starlight             |eternal_starlight             |0.4.1+1.21.1+neoforg|Manifest: NOSIGNATURE         everythingcopper-1.21.1-2.4.3.jar                 |Everything is Copper          |everythingcopper              |1.21.1-2.4.3        |Manifest: NOSIGNATURE         evilcraft-1.21.1-neoforge-1.2.68.jar              |EvilCraft                     |evilcraft                     |1.2.68              |Manifest: NOSIGNATURE         expandability-neoforge-12.0.0.jar                 |ExpandAbility                 |expandability                 |12.0.0              |Manifest: NOSIGNATURE         experiencelib-1.21.1-1.0.3.jar                    |ExperienceLib                 |experiencelib                 |1.0.3               |Manifest: NOSIGNATURE         ExplorersCompass-1.21.1-3.0.3-neoforge.jar        |Explorer's Compass            |explorerscompass              |1.21.1-3.0.3-neoforg|Manifest: NOSIGNATURE         Explorify v1.6.2 f10-48.jar                       |Explorify                     |explorify                     |1.6.2               |Manifest: NOSIGNATURE         extended-industrialization-1.14.6-1.21.1.jar      |Extended Industrialization    |extended_industrialization    |1.14.6-1.21.1       |Manifest: NOSIGNATURE         ExtendedAE-1.21-2.2.6-neoforge.jar                |ExtendedAE                    |extendedae                    |1.21-2.2.6-neoforge |Manifest: NOSIGNATURE         ExtremeReactors2-1.21.1-2.4.21.jar                |Extreme Reactors              |bigreactors                   |1.21.1-2.4.21       |Manifest: NOSIGNATURE         factory_blocks-neoforge-1.4.0+mc1.21.1.jar        |Factory Blocks                |factory_blocks                |1.4.0+mc1.21.1      |Manifest: NOSIGNATURE         FarmersDelight-1.21.1-1.2.7.jar                   |Farmer's Delight              |farmersdelight                |1.2.7               |Manifest: NOSIGNATURE         farmingforblockheads-neoforge-1.21.1-21.1.7.jar   |Farming for Blockheads        |farmingforblockheads          |21.1.7              |Manifest: NOSIGNATURE         FastWorkbench-1.21-9.1.2.jar                      |Fast Workbench                |fastbench                     |9.1.2               |Manifest: NOSIGNATURE         FastFurnace-1.21.1-9.0.0.jar                      |FastFurnace                   |fastfurnace                   |9.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         fireproofboats-1.21.0-1.0.3.jar                   |Fireproof Boats               |fireproofboats                |1.21.0-1.0.3        |Manifest: NOSIGNATURE         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.1-11.jar             |Flywheel                      |flywheel                      |1.0.1-11            |Manifest: NOSIGNATURE         forbidden_arcanus-1.21.1-2.5.14.jar               |Forbidden Arcanus             |forbidden_arcanus             |2.5.14              |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-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         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         functionalstorage-1.21.1-1.4.2.jar                |Functional Storage            |functionalstorage             |1.21.1-1.4.2        |Manifest: NOSIGNATURE         fusion-1.2.4-neoforge-mc1.21.jar                  |Fusion                        |fusion                        |1.2.4               |Manifest: NOSIGNATURE         fzzy_config-0.6.5+1.21+neoforge.jar               |Fzzy Config                   |fzzy_config                   |0.6.5+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         generatorgalore-1.21.1-1.3.4.jar                  |Generator Galore              |generatorgalore               |1.21.1-1.3.4        |Manifest: NOSIGNATURE         getittogetherdrops-neoforge-1.21-1.3.2.jar        |Get It Together, Drops!       |getittogetherdrops            |1.3.2               |Manifest: NOSIGNATURE         Glassential-renewed-neoforge-1.21.1-3.1.5.jar     |Glassential-renewed           |glassential                   |3.1.5               |Manifest: NOSIGNATURE         Glodium-1.21-2.2-neoforge.jar                     |Glodium                       |glodium                       |1.21-2.2-neoforge   |Manifest: NOSIGNATURE         GrandPower-3.0.0.jar                              |Grand Power                   |grandpower                    |3.0.0               |Manifest: NOSIGNATURE         GravitationalModulatingAdditionalUnit-1.21.1-6.1.j|Gravitational Modulating Addit|gmut                          |6.1                 |Manifest: NOSIGNATURE         guideme-21.1.5.jar                                |GuideME                       |guideme                       |21.1.5              |Manifest: NOSIGNATURE         handcrafted-neoforge-1.21.1-4.0.2.jar             |Handcrafted                   |handcrafted                   |4.0.2               |Manifest: NOSIGNATURE         hardenedarmadillos-1.21.1-0.2.0.jar               |Hardened Armadillos           |hardenedarmadillos            |1.21.1-0.2.0        |Manifest: NOSIGNATURE         harvest-with-ease-neoforge-1.21-9.4.0.jar         |Harvest with ease             |harvest_with_ease             |9.4.0               |Manifest: NOSIGNATURE         heyberryshutup-1.21.0-2.0.4.jar                   |Hey Berry! SHUT UP            |heyberryshutup                |1.21.0-2.0.4        |Manifest: NOSIGNATURE         HostileNeuralNetworks-1.21.1-6.1.3.jar            |Hostile Neural Networks       |hostilenetworks               |6.1.3               |Manifest: NOSIGNATURE         hyperbox-1.21-6.0.0.1.jar                         |Hyperbox                      |hyperbox                      |6.0.0.1             |Manifest: NOSIGNATURE         imfast-NEOFORGE-1.0.2.jar                         |I'm Fast                      |imfast                        |1.0.2               |Manifest: NOSIGNATURE         illagerwarship-1.0.0-neoforge-1.21.1.jar          |Illager-Warship               |illagerwarship                |1.0.0               |Manifest: NOSIGNATURE         ImmediatelyFast-NeoForge-1.6.2+1.21.1.jar         |ImmediatelyFast               |immediatelyfast               |1.6.2+1.21.1        |Manifest: NOSIGNATURE         Immersive-Energistics-1.1.0-beta.jar              |Immersive Energistics         |immeng                        |1.1.0-beta          |Manifest: NOSIGNATURE         ImmersiveEngineering-1.21.1-12.1.0-185.jar        |Immersive Engineering         |immersiveengineering          |12.1.0-185          |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         infiniverse-1.21-2.0.1.0.jar                      |Infiniverse                   |infiniverse                   |2.0.1.0             |Manifest: NOSIGNATURE         integratedcrafting-1.21.1-neoforge-1.1.16-300.jar |IntegratedCrafting            |integratedcrafting            |1.1.16              |Manifest: NOSIGNATURE         integrateddynamics-1.21.1-neoforge-1.25.9.jar     |IntegratedDynamics            |integrateddynamics            |1.25.9              |Manifest: NOSIGNATURE         integratedscripting-1.21.1-neoforge-1.0.17.jar    |IntegratedScripting           |integratedscripting           |1.0.17              |Manifest: NOSIGNATURE         integratedterminals-1.21.1-neoforge-1.6.10.jar    |IntegratedTerminals           |integratedterminals           |1.6.10              |Manifest: NOSIGNATURE         integratedtunnels-1.21.1-neoforge-1.8.36-393.jar  |IntegratedTunnels             |integratedtunnels             |1.8.36              |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.0.jar                        |Inventory Tweaks Refoxed      |invtweaks                     |1.21.1-1.2.0        |Manifest: NOSIGNATURE         ironfurnaces-neoforge-1.21.1-4.2.6.jar            |Iron Furnaces                 |ironfurnaces                  |4.2.6               |Manifest: NOSIGNATURE         IronJetpacks-1.21.1-8.0.7.jar                     |Iron Jetpacks                 |ironjetpacks                  |8.0.7               |Manifest: NOSIGNATURE         irons_jewelry-1.21.1-1.0.9.jar                    |Iron's Gems 'n Jewelry        |irons_jewelry                 |1.21.1-1.0.9        |Manifest: NOSIGNATURE         irons_spellbooks-1.21.1-3.10.1.jar                |Iron's Spells 'n Spellbooks   |irons_spellbooks              |1.21.1-3.10.1       |Manifest: NOSIGNATURE         itemcollectors-1.1.10-neoforge-mc1.21.jar         |Item Collectors               |itemcollectors                |1.1.10              |Manifest: NOSIGNATURE         Jade-1.21.1-NeoForge-15.10.0.jar                  |Jade                          |jade                          |15.10.0+neoforge    |Manifest: NOSIGNATURE         jamlib-neoforge-1.3.2+1.21.1.jar                  |JamLib                        |jamlib                        |1.3.2+1.21.1        |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.40.jar      |Journeymap                    |journeymap                    |1.21.1-6.0.0-beta.40|Manifest: NOSIGNATURE         journeymap-api-neoforge-2.0.0-1.21.1-SNAPSHOT.jar |JourneyMap API                |journeymap_api                |2.0.0               |Manifest: NOSIGNATURE         jumpboat-1.21.0-1.0.5.jar                         |Jumpy Boats                   |jumpboat                      |1.21.0-1.0.5        |Manifest: NOSIGNATURE         justdirethings-1.5.4.jar                          |Just Dire Things              |justdirethings                |1.5.4               |Manifest: NOSIGNATURE         jearchaeology-1.21.0-1.1.5.jar                    |Just Enough Archaeology       |jearchaeology                 |1.21.0-1.1.5        |Manifest: NOSIGNATURE         jei-1.21.1-neoforge-19.21.0.247.jar               |Just Enough Items             |jei                           |19.21.0.247         |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         kuma-api-neoforge-21.0.5-SNAPSHOT.jar             |KumaAPI                       |kuma_api                      |21.0.5-SNAPSHOT     |Manifest: NOSIGNATURE         L_Ender's Cataclysm-2.58-1.21.1.jar               |L_Ender's Cataclysm           |cataclysm                     |2.58-1.21.1         |Manifest: NOSIGNATURE         laserbridges-1.21.1-neoforge-5.jar                |Laser Bridges & Doors         |laserbridges                  |5                   |Manifest: NOSIGNATURE         laserio-1.9.11.jar                                |LaserIO                       |laserio                       |1.9.11              |Manifest: NOSIGNATURE         letmedespawn-1.21.x-neoforge-1.5.0.jar            |Let Me Despawn                |letmedespawn                  |1.5.0               |Manifest: NOSIGNATURE         lionfishapi-2.6.jar                               |lionfishapi                   |lionfishapi                   |2.6                 |Manifest: NOSIGNATURE         lithostitched-neoforge-1.21.1-1.4.5.jar           |Lithostitched                 |lithostitched                 |1.4.2               |Manifest: NOSIGNATURE         livingthings-neoforge-1.21.1-2.2.0.jar            |Living Things                 |livingthings                  |1.21.1-2.2.0        |Manifest: NOSIGNATURE         lmft-1.0.4+1.21-neoforge.jar                      |Load My F***ing Tags          |lmft                          |1.0.4+1.21          |Manifest: NOSIGNATURE         lootr-neoforge-1.21-1.10.35.90.jar                |Lootr                         |lootr                         |1.21-1.10.35.90     |Manifest: NOSIGNATURE         luminax-1.2.2_neoforge_1.21.1.jar                 |Luminax                       |luminax                       |1.2.2               |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-furniture-3.3.0-mc1.21.1neoforge.jar          |Macaw's Furniture             |mcwfurnitures                 |3.3.0               |Manifest: NOSIGNATURE         mcw-holidays-1.1.0-mc1.21.1neoforge.jar           |Macaw's Holidays              |mcwholidays                   |1.1.0               |Manifest: NOSIGNATURE         mcw-lights-1.1.1-mc1.21.1neoforge.jar             |Macaw's Lights and Lamps      |mcwlights                     |1.1.1               |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         mahoutsukai-1.21.0-v1.35.42.jar                   |Mahou Tsukai                  |mahoutsukai                   |1.21.0-v1.35.42     |Manifest: NOSIGNATURE         herbsandharvest-1.21.1-1.jar                      |Mama's Herbs and Harvest      |herbsandharvest               |1.0.0               |Manifest: NOSIGNATURE         merrymaking-1.21.1-7.jar                          |Mama's MerryMaking            |merrymaking                   |1.0.0               |Manifest: NOSIGNATURE         mcjtylib-1.21-9.0.6.jar                           |McJtyLib                      |mcjtylib                      |1.21-9.0.6          |Manifest: NOSIGNATURE         merequester-neoforge-1.21.1-1.1.8.jar             |ME Requester                  |merequester                   |1.21.1-1.1.8        |Manifest: NOSIGNATURE         Measurements-neoforge-1.21-3.0.0.jar              |Measurements                  |measurements                  |3.0.0               |Manifest: NOSIGNATURE         megacells-4.6.1.jar                               |MEGA Cells                    |megacells                     |4.6.1               |Manifest: NOSIGNATURE         Mekanism-1.21.1-10.7.12.77.jar                    |Mekanism                      |mekanism                      |10.7.12             |Manifest: NOSIGNATURE         mekanismcovers-1.3-BETA+1.21.jar                  |Mekanism Covers               |mekanismcovers                |1.3-BETA+1.21       |Manifest: NOSIGNATURE         MekanismGenerators-1.21.1-10.7.12.77.jar          |Mekanism: Generators          |mekanismgenerators            |10.7.12             |Manifest: NOSIGNATURE         MekanismTools-1.21.1-10.7.12.77.jar               |Mekanism: Tools               |mekanismtools                 |10.7.12             |Manifest: NOSIGNATURE         memorysettings-1.21-5.9.jar                       |memorysettings mod            |memorysettings                |5.9                 |Manifest: NOSIGNATURE         minecolonies-1.1.905-1.21.1-snapshot.jar          |MineColonies                  |minecolonies                  |1.1.905-1.21.1-snaps|Manifest: NOSIGNATURE         server-1.21.1-20240808.144430-srg.jar             |Minecraft                     |minecraft                     |1.21.1              |Manifest: NOSIGNATURE         mininggadgets-1.18.6.jar                          |Mining Gadgets                |mininggadgets                 |1.18.6              |Manifest: NOSIGNATURE         dummmmmmy-1.21-2.0.7-neoforge.jar                 |MmmMmmMmmMmm                  |dummmmmmy                     |1.21-2.0.7          |Manifest: NOSIGNATURE         mostructures-neoforge-1.5.0+1.21.jar              |Mo' Structures                |mostructures                  |1.5.0+1.21          |Manifest: NOSIGNATURE         mob_grinding_utils-1.1.7+mc1.21.1.jar             |Mob Grinding Utils            |mob_grinding_utils            |1.1.7+mc1.21.1      |Manifest: NOSIGNATURE         Modern-Dynamics-0.9.4.jar                         |Modern Dynamics               |moderndynamics                |0.9.4               |Manifest: NOSIGNATURE         Modern-Industrialization-2.2.34.jar               |Modern Industrialization      |modern_industrialization      |2.2.34              |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         mffs-5.4.16.jar                                   |Modular Force Field System    |mffs                          |5.4.16              |Manifest: NOSIGNATURE         modular_machinery_reborn-1.21.1-2.1.5.jar         |Modular Machinery Reborn      |modular_machinery_reborn      |2.1.5               |Manifest: NOSIGNATURE         modular_machinery_reborn_ars-1.21.1-2.0.0.jar     |Modular Machinery Reborn ArsNo|modular_machinery_reborn_ars  |2.0.0               |Manifest: NOSIGNATURE         modular_machinery_reborn_mekanism-1.21.1-2.0.3.jar|Modular Machinery Reborn Mekan|modular_machinery_reborn_mekan|2.0.3               |Manifest: NOSIGNATURE         modular-routers-13.2.1+mc1.21.1.jar               |Modular Routers               |modularrouters                |13.2.1              |Manifest: NOSIGNATURE         monolib-neoforge-1.21.1-2.0.0.jar                 |MonoLib                       |monolib                       |2.0.0               |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.36-neoforge.jar               |Moonlight Lib                 |moonlight                     |1.21-2.17.36        |Manifest: NOSIGNATURE         moredragoneggs-5.0.jar                            |More Dragon Eggs              |moredragoneggs                |5.0                 |Manifest: NOSIGNATURE         mifa-neoforge-1.21.x-2.1.0.jar                    |More Industrial Foregoing Addo|mifa                          |2.1.0               |Manifest: NOSIGNATURE         morered-1.21.1-6.0.0.3.jar                        |More Red                      |morered                       |6.0.0.3             |Manifest: NOSIGNATURE         MoreRed-CCT-Compat-1.21.1-1.3.0.jar               |More Red x CC:Tweaked Compat  |moreredxcctcompat             |1.21.1-1.3.0        |Manifest: NOSIGNATURE         MouseTweaks-neoforge-mc1.21-2.26.1.jar            |Mouse Tweaks                  |mousetweaks                   |2.26.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         MysticalAgradditions-1.21.1-8.0.4.jar             |Mystical Agradditions         |mysticalagradditions          |8.0.4               |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         NaturesCompass-1.21.1-3.0.3-neoforge.jar          |Nature's Compass              |naturescompass                |1.21.1-3.0.2-neoforg|Manifest: NOSIGNATURE         NaturesAura-41.6.jar                              |NaturesAura                   |naturesaura                   |41.6                |Manifest: NOSIGNATURE         neoforge-21.1.133-universal.jar                   |NeoForge                      |neoforge                      |21.1.133            |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         novillagerdm-1.21.1-6.0.0.jar                     |No Villager Death Messages    |novillagerdm                  |6.0.0               |Manifest: NOSIGNATURE         not_enough_glyphs-1.21.1-4.0.6.jar                |Not Enough Glyphs             |not_enough_glyphs             |4.0.6               |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         occultism_kubejs-1.21.1-neoforge-1.8.0.jar        |Occultism KubeJS              |occultism_kubejs              |1.8.0               |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.10.jar       |Oh The Biomes We've Gone      |biomeswevegone                |2.3.10              |Manifest: NOSIGNATURE         Oh-The-Trees-Youll-Grow-neoforge-1.21.1-5.0.8.jar |Oh The Trees You'll Grow      |ohthetreesyoullgrow           |5.0.8               |Manifest: NOSIGNATURE         omegaconfig-neoforge-1.5.1.jar                    |Omega Config Architectury     |omegaconfig                   |1.5.1               |Manifest: NOSIGNATURE         overloadedarmorbar-neoforge-1.21-2.jar            |OverloadedArmorBar            |overloadedarmorbar            |2                   |Manifest: NOSIGNATURE         pamhc2crops-NEOFORGE-1.21.1-1.0.0.jar             |Pam's HarvestCraft - Crops    |pamhc2crops                   |1.0.0               |Manifest: NOSIGNATURE         pamhc2foodcore-NEOFORGE-1.21.1-1.0.0.jar          |Pam's HarvestCraft - Food Core|pamhc2foodcore                |1.0.0               |Manifest: NOSIGNATURE         pamhc2foodextended-NEOFORGE-1.21.1-1.0.0.jar      |Pam's HarvestCraft - Food Exte|pamhc2foodextended            |1.0.0               |Manifest: NOSIGNATURE         pamhc2trees-NEOFORGE-1.21.1-1.0.0.jar             |Pam's HarvestCraft - Trees    |pamhc2trees                   |1.0.0               |Manifest: NOSIGNATURE         Patchouli-1.21-88-NEOFORGE.jar                    |Patchouli                     |patchouli                     |1.21-88-NEOFORGE    |Manifest: NOSIGNATURE         pipez-neoforge-1.21.1-1.2.19.jar                  |Pipez                         |pipez                         |1.21.1-1.2.19       |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         pneumaticcraft-repressurized-8.2.12+mc1.21.1.jar  |PneumaticCraft: Repressurized |pneumaticcraft                |8.2.12              |Manifest: NOSIGNATURE         pocketstorage-1.2.4+1.21.1-b40.jar                |Pocket Storage                |pocketstorage                 |1.2.4+1.21.1-b40    |Manifest: NOSIGNATURE         polylib-2100.0.3-build.160-neoforge.jar           |PolyLib                       |polylib                       |2100.0.3-build.160  |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.45.jar                 |Ponder                        |ponder                        |1.0.45              |Manifest: NOSIGNATURE         potionsmaster-21.1.72-0.6.8-packdev.jar           |PotionsMaster                 |potionsmaster                 |0.6.8-packdev       |Manifest: NOSIGNATURE         Powah-6.1.6.jar                                   |Powah                         |powah                         |6.1.6               |Manifest: NOSIGNATURE         prickle-neoforge-1.21.1-21.1.6.jar                |PrickleMC                     |prickle                       |21.1.6              |Manifest: NOSIGNATURE         productivebees-1.21.1-13.6.11.jar                 |Productive Bees               |productivebees                |1.21.1-13.6.11      |Manifest: NOSIGNATURE         productivelib-1.21.0-0.1.12.jar                   |Productive Lib                |productivelib                 |1.21.0-0.1.12       |Manifest: NOSIGNATURE         productivemetalworks-1.21.1-1.2.5.jar             |Productive Metalworks         |productivemetalworks          |1.21.1-1.2.5        |Manifest: NOSIGNATURE         productivetrees-1.21.1-0.7.0.jar                  |Productive Trees              |productivetrees               |1.21.1-0.7.0        |Manifest: NOSIGNATURE         pylons-1.21.1-5.1.1.jar                           |Pylons                        |pylons                        |5.1.1               |Manifest: NOSIGNATURE         AdditionalEnchantedMiner-1.21.1-neoforge-21.1.119.|QuarryPlus                    |quarryplus                    |21.1.119            |Manifest: ef:50:af:b3:03:e0:3e:70:a7:ef:78:77:a5:4d:d4:b5:07:ec:df:9d:d6:f3:12:13:c9:3c:cd:9a:0a:3e:6b:43         railcraft-reborn-1.21.1-1.2.5.jar                 |Railcraft Reborn              |railcraft                     |1.2.5               |Manifest: NOSIGNATURE         rangedpumps-1.3.0.jar                             |Ranged Pumps                  |rangedpumps                   |1.3.0               |Manifest: NOSIGNATURE         rarcompat-1.21-0.9.5.jar                          |RAR-Compat                    |rarcompat                     |0.9.5               |Manifest: NOSIGNATURE         reap-neoforge-1.21.1-1.1.2.jar                    |Reap Mod                      |reap                          |1.21.1-1.1.2        |Manifest: NOSIGNATURE         rebind_narrator-neoforge-1.21.1-2.0.3.jar         |Rebind Narrator               |rebind_narrator               |2.0.3               |Manifest: NOSIGNATURE         rechiseled-1.1.6a-neoforge-mc1.21.jar             |Rechiseled                    |rechiseled                    |1.1.6+a             |Manifest: NOSIGNATURE         rechiseled_chipped-1.2.jar                        |Rechiseled: Chipped           |rechiseled_chipped            |1.2                 |Manifest: NOSIGNATURE         redstonepen-1.21-neoforge-1.11.42.jar             |Redstone Pen                  |redstonepen                   |1.11.42             |Manifest: bf:30:76:97:e4:58:41:61:2a:f4:30:d3:8f:4c:e3:71:1d:14:c4:a1:4e:85:36:e3:1d:aa:2f:cb:22:b0:04:9b         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         reliquary-1.21.1-2.0.47.1254.jar                  |Reliquary Reincarnations      |reliquary                     |2.0.47              |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         restrictions-1.21-7.0.3.jar                       |Restrictions                  |restrictions                  |1.21-7.0.3          |Manifest: NOSIGNATURE         rftoolsbase-1.21-6.0.6.jar                        |RFToolsBase                   |rftoolsbase                   |1.21-6.0.6          |Manifest: NOSIGNATURE         rftoolsbuilder-1.21-7.0.2.jar                     |RFToolsBuilder                |rftoolsbuilder                |1.21-7.0.2          |Manifest: NOSIGNATURE         rftoolspower-1.21-7.0.3.jar                       |RFToolsPower                  |rftoolspower                  |1.21-7.0.3          |Manifest: NOSIGNATURE         rhino-2101.2.7-build.74.jar                       |Rhino                         |rhino                         |2101.2.7-build.74   |Manifest: NOSIGNATURE         RootsClassic-1.21.1-1.5.5.jar                     |Roots Classic                 |rootsclassic                  |1.21.1-1.5.5        |Manifest: NOSIGNATURE         Searchables-neoforge-1.21.1-1.0.2.jar             |Searchables                   |searchables                   |1.0.2               |Manifest: NOSIGNATURE         [1.21.1] SecurityCraft v1.9.12.jar                |SecurityCraft                 |securitycraft                 |1.9.12              |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         shrink-2.0.0.44-neoforge.jar                      |Shrink                        |shrink                        |2.0.0.44            |Manifest: NOSIGNATURE         silent-gear-1.21.1-neoforge-4.0.15.jar            |Silent Gear                   |silentgear                    |4.0.15              |Manifest: NOSIGNATURE         silent-lib-1.21.1-neoforge-10.4.0.jar             |Silent Lib                    |silentlib                     |10.4.0              |Manifest: NOSIGNATURE         simplemagnets-1.1.12b-neoforge-mc1.21.jar         |Simple Magnets                |simplemagnets                 |1.1.12+b            |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         smithingtemplateviewer-1.0.0.jar                  |SmithingTemplateViewer        |smithingtemplateviewer        |1.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.2.900.jar            |Sophisticated Core            |sophisticatedcore             |1.3.2               |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         soulplied_energistics-1.0.1.jar                   |Soulplied Energistics         |soulplied_energistics         |1.0.1               |Manifest: NOSIGNATURE         spark-1.10.124-neoforge.jar                       |spark                         |spark                         |1.10.124            |Manifest: NOSIGNATURE         spectrelib-neoforge-0.17.2+1.21.jar               |SpectreLib                    |spectrelib                    |0.17.2+1.21         |Manifest: NOSIGNATURE         solcarrot-1.21.1-1.16.5.jar                       |Spice of Life: Carrot Edition |solcarrot                     |1.16.5              |Manifest: NOSIGNATURE         stevescarts-1.21-1.2.13-neoforge.jar              |StevesCarts2                  |stevescarts                   |1.2.13              |Manifest: NOSIGNATURE         storagedelight-25.03.09-1.21-neoforge.jar         |Storage Delight               |storagedelight                |25.03.09-1.21-neofor|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         structurize-1.0.765-1.21.1-snapshot.jar           |Structurize                   |structurize                   |1.0.765-1.21.1-snaps|Manifest: NOSIGNATURE         stylecolonies-1.12-1.21.1.jar                     |Stylecolonies                 |stylecolonies                 |1.12                |Manifest: NOSIGNATURE         Super Factory Manager-1.21.1-4.19.0.jar           |Super Factory Manager         |sfm                           |4.19.0              |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.41-beta-neoforge.jar     |Supplementaries               |supplementaries               |1.21-3.0.41-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         TerraBlender-neoforge-1.21.1-4.1.0.8.jar          |TerraBlender                  |terrablender                  |4.1.0.8             |Manifest: NOSIGNATURE         tesseract-api-neoforge-1.8.3-1.21.1.jar           |Tesseract API                 |tesseract_api                 |1.8.3-1.21.1        |Manifest: NOSIGNATURE         the_bumblezone-7.8.3+1.21.1-neoforge.jar          |The Bumblezone                |the_bumblezone                |7.8.3+1.21.1-neoforg|Manifest: NOSIGNATURE         twilightforest-1.21.1-4.6.3003-universal.jar      |The Twilight Forest           |twilightforest                |4.6.3003            |Manifest: NOSIGNATURE         The_Undergarden-1.21.1-0.8.22.jar                 |The Undergarden               |undergarden                   |0.8.22              |Manifest: NOSIGNATURE         theurgy-1.21.1-neoforge-1.60.0.jar                |Theurgy                       |theurgy                       |1.60.0              |Manifest: NOSIGNATURE         theurgy_kubejs-1.21.1-neoforge-1.4.0.jar          |Theurgy KubeJS                |theurgy_kubejs                |1.4.0               |Manifest: NOSIGNATURE         tiab-neoforge-6.4.0.jar                           |Time In A Bottle              |tiab                          |6.4.0               |Manifest: NOSIGNATURE         titanium-1.21-4.0.35.jar                          |Titanium                      |titanium                      |4.0.35              |Manifest: NOSIGNATURE         ToolBelt-1.21.1-2.2.6.jar                         |Tool Belt                     |toolbelt                      |2.2.6               |Manifest: NOSIGNATURE         torchmaster-neoforge-1.21.1-21.1.5-beta.jar       |Torchmaster                   |torchmaster                   |21.1.5-beta         |Manifest: NOSIGNATURE         t_and_t-neoforge-fabric-1.13.2.jar                |Towns and Towers              |t_and_t                       |1.13.2              |Manifest: NOSIGNATURE         towntalk-1.2.0.jar                                |Towntalk                      |towntalk                      |1.2.0               |Manifest: NOSIGNATURE         trashcans-1.0.18c-neoforge-mc1.21.jar             |Trash Cans                    |trashcans                     |1.0.18+c            |Manifest: NOSIGNATURE         trashslot-neoforge-1.21.1-21.1.2.jar              |TrashSlot                     |trashslot                     |21.1.2              |Manifest: NOSIGNATURE         treetap-1.21.1-0.4.3.jar                          |Tree Tap                      |treetap                       |1.21.1-0.4.3        |Manifest: NOSIGNATURE         blockui-1.0.195-1.21.1-snapshot.jar               |UI Library Mod                |blockui                       |1.0.195-1.21.1-snaps|Manifest: NOSIGNATURE         UndergroundVillages-neoforge-1.21-4.0.0.jar       |Underground Villages Mod      |underground_villages          |4.0.0               |Manifest: NOSIGNATURE         sawmill-1.21-1.5.14-neoforge.jar                  |Universal Sawmill             |sawmill                       |1.21-1.5.14         |Manifest: NOSIGNATURE         utilitarian-1.21.1-0.13.10.jar                    |Utilitarian                   |utilitarian                   |1.21.1-0.13.10      |Manifest: NOSIGNATURE         valhelsia_core-neoforge-1.21.1-1.1.5.jar          |Valhelsia Core                |valhelsia_core                |1.1.5               |Manifest: NOSIGNATURE         variantsandventures-neoforge-mc1.21.1-1.0.10.jar  |Variants&Ventures             |variantsandventures           |1.0.10              |Manifest: NOSIGNATURE         villagesandpillages-neoforge-mc1.21.1-1.0.3.jar   |Villages & Pillages           |villagesandpillages           |1.0.3               |Manifest: NOSIGNATURE         waystones-neoforge-1.21.1-21.1.13.jar             |Waystones                     |waystones                     |21.1.13             |Manifest: NOSIGNATURE         DungeonsArise-1.21.x-2.1.64-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.64              |Manifest: NOSIGNATURE         wirelesschargers-1.0.9a-neoforge-mc1.21.jar       |Wireless Chargers             |wirelesschargers              |1.0.9+a             |Manifest: NOSIGNATURE         WitherSkeletonTweaks-1.21.1-10.0.2.jar            |Wither Skeleton Tweaks        |wstweaks                      |10.0.2              |Manifest: NOSIGNATURE         wits-1.3.0+1.21-neoforge.jar                      |WITS                          |wits                          |1.3.0+1.21-neoforge |Manifest: NOSIGNATURE         xnet-1.21-7.0.4.jar                               |XNet                          |xnet                          |1.21-7.0.4          |Manifest: NOSIGNATURE         xtonesreworked-1.1.0-NF-1.21_21.0.167.jar         |XTones Reworked               |xtonesreworked                |1.1.0               |Manifest: NOSIGNATURE         xycraft_core-0.7.45-all.jar                       |XyCraft Core                  |xycraft_core                  |0.7.45              |Manifest: NOSIGNATURE         xycraft_machines-0.7.45.jar                       |XyCraft Machines              |xycraft_machines              |0.7.45              |Manifest: NOSIGNATURE         xycraft_override-0.7.45.jar                       |XyCraft Override              |xycraft_override              |0.7.45              |Manifest: NOSIGNATURE         xycraft_world-0.7.45.jar                          |XyCraft World                 |xycraft_world                 |0.7.45              |Manifest: NOSIGNATURE         yeetusexperimentus-neoforge-87.0.0.jar            |Yeetus Experimentus           |yeetusexperimentus            |87.0.0              |Manifest: NOSIGNATURE         YetAnotherConfigLib-3.6.2+1.21-neoforge.jar       |YetAnotherConfigLib           |yet_another_config_lib_v3     |3.6.2+1.21-neoforge |Manifest: NOSIGNATURE         YungsApi-1.21.1-NeoForge-5.1.4.jar                |YUNG's API                    |yungsapi                      |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.21.1-NeoForge-4.1.5.jar|YUNG's Better Desert Temples  |betterdeserttemples           |1.21.1-NeoForge-4.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         YungsBetterJungleTemples-1.21.1-NeoForge-3.1.2.jar|YUNG's Better Jungle Temples  |betterjungletemples           |1.21.1-NeoForge-3.1.|Manifest: NOSIGNATURE         YungsBetterMineshafts-1.21.1-NeoForge-5.1.1.jar   |YUNG's Better Mineshafts      |bettermineshafts              |1.21.1-NeoForge-5.1.|Manifest: NOSIGNATURE         YungsBetterNetherFortresses-1.21.1-NeoForge-3.1.4.|YUNG's Better Nether Fortresse|betterfortresses              |1.21.1-NeoForge-3.1.|Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.21.1-NeoForge-4.1.2.ja|YUNG's Better Ocean Monuments |betteroceanmonuments          |1.21.1-NeoForge-4.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         YungsBetterWitchHuts-1.21.1-NeoForge-4.1.1.jar    |YUNG's Better Witch Huts      |betterwitchhuts               |1.21.1-NeoForge-4.1.|Manifest: NOSIGNATURE         YungsExtras-1.21.1-NeoForge-5.1.1.jar             |YUNG's Extras                 |yungsextras                   |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: be5d3441-3e0a-4533-98fb-b1fc9d5ceab8     FML: 4.0.38     NeoForge: 21.1.133  
    • the problem is most likely in the settings or incompatibility of Prism with Forge 1.21.4
    • as far as I understand, loading of data and resources is processed by different systems, each with its own priority
  • Topics

×
×
  • Create New...

Important Information

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