Jump to content

Recommended Posts

Posted

I have few questions about ModelBase rendering (I'm looking for few hints to point me to right direction):

1. How to tell the game to register the model (from my research there was method in ForgeClient class to register item renderer, but now I can't find it)

 

2. Based on Forge docs there is TEISR which I have atached to the items I want to on client side. Now I need baked model to use the isBuiltInRenderer method. So from my understanding I would need 3 classes for each item (base class, renderer and model), I guess.

 

I would like to use the ModelBase models since the .json is limited in the size so then I think I can't use the item blockstates.

Posted
18 minutes ago, Toma™ said:

I would like to use the ModelBase models since the .json is limited in the size

Define "limited in the size". You can use the scale transform to make the model bigger.

 

18 minutes ago, Toma™ said:

Now I need baked model to use the isBuiltInRenderer method.

Provide a dummy IBakedModel then.

 

18 minutes ago, Toma™ said:

from my research there was method in ForgeClient class to register item renderer, but now I can't find it

That method was deprecated a while ago. Use the methods that the Item class provides.

 

So far you have not explained what you need a TEISR for. Please elaborate, the functionality you want might be acheivable with basic json.

Posted
3 minutes ago, V0idWa1k3r said:

So far you have not explained what you need a TEISR for. Please elaborate, the functionality you want might be acheivable with basic json.

 

I want to create weapon with better details so default scale function is not enough for me. Also I was looking when vanilla uses the TEISR and that's for the shield based on it's NBT. I want to do something like that (render atachments on the weapon based on NBT). I have the NBT working, I'm just looking for the rendering. From what I have found the .json is limited to 3x3 block size and becausd of that I think I'll need to use ModelBase

Posted

You can do that without a TEISR. Take a look at https://github.com/CAS-ual-TY/GunCus, the implementation of it in MinecraftByExample and the multiple topics on this forum about it

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

I have been thinking about few things recently and I would like to know something before I start working. Using IBakedModel for rendering will still allow me to do dynamic rendering (like rendering additional models on my base model based on NBT) and other stuff like animations? Also is using ModelBase bad idea, since I don't really like just scaling the .json model because I think I will want more details and it might be a lot of work to make it properly in smaller scale. So I'm just making sure I don't need the TEISR.

Posted

I’d say use JSON so resource packs can change your models. How is it harder to use JSON than model base? It seems like it would be a lot easier to me

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
7 minutes ago, Cadiboo said:

I’d say use JSON so resource packs can change your models. How is it harder to use JSON than model base? It seems like it would be a lot easier to me

Well I'm bit confused with the JSON system, specially with rendering another models into it. For the model base renderer it looks a little easier (i was looking into some of the flans mod model code). I know there is system similar to blockstate system which is used for the bow, but I'm bit confused with it's usage. Because bow has like 3 states and every state has it's texture. So if I have 5 atachment types + some variants for each of them would I have to write every single combination for the item state or is there easier way? I still have feeling modelbase would be easier, but I'm not really experienced.

Posted

It depends on your use case. If your model doesn’t move, or doesn’t much at all use JSON. If you have something that moves a lot (like a player) use programed models. If you find JSON hard to use, check out http://blockbench.net

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
10 hours ago, Cadiboo said:

It depends on your use case. If your model doesn’t move, or doesn’t much at all use JSON. If you have something that moves a lot (like a player) use programed models. If you find JSON hard to use, check out http://blockbench.net

I know about that, but I think I didn't provide enough information on misunderstood you somewhere. So I will repeat everything here:

1) Using the JSON system will allow me to change the model dynamically based on it's NBT (I have made inventory for ataching atachments to weapons so I would like to render the atachment based on the NBT - so will the JSON model allow me to do that?)

 

2) I would like to implement something like ADS mode for aiming. With some scope atachments I simply render overlay over player screen, but when weapon doesn't have scope I would like to be able to move the model in front of player view to simulate the ADS (possibly in render tick event using some GL methods, I'm not sure if that is the correct way)

 

3) Would it be possible to scale the model in something like render tick event (since I will propably have to do model of some size and then scale it up - I know JSON has function for scaling but if I would need to scale it even more would it allow me to use the GL scale method)?

 

I'm confused with this rendering so thanks everybody for helping me

Posted
32 minutes ago, Toma™ said:

2) I would like to implement something like ADS mode for aiming. With some scope atachments I simply render overlay over player screen, but when weapon doesn't have scope I would like to be able to move the model in front of player view to simulate the ADS (possibly in render tick event using some GL methods, I'm not sure if that is the correct way)

 

3) Would it be possible to scale the model in something like render tick event (since I will propably have to do model of some size and then scale it up - I know JSON has function for scaling but if I would need to scale it even more would it allow me to use the GL scale method)?

 

I'm confused with this rendering so thanks everybody for helping me

You might want to look at the GunCus mod, it does both those things

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
3 hours ago, Cadiboo said:

You might want to look at the GunCus mod, it does both those things

Isn't that mod stuck in 1.7.10? I might be looking at a wrong mod though.

 

3 hours ago, Toma™ said:

1) Using the JSON system will allow me to change the model dynamically based on it's NBT (I have made inventory for ataching atachments to weapons so I would like to render the atachment based on the NBT - so will the JSON model allow me to do that?)

Yes, and that's quite easy.

 

3 hours ago, Toma™ said:

2) I would like to implement something like ADS mode for aiming. With some scope atachments I simply render overlay over player screen, but when weapon doesn't have scope I would like to be able to move the model in front of player view to simulate the ADS (possibly in render tick event using some GL methods, I'm not sure if that is the correct way)

I am not sure this is possible with IBakedModel without some hacky solutions. 

 

3 hours ago, Toma™ said:

3) Would it be possible to scale the model in something like render tick event (since I will propably have to do model of some size and then scale it up - I know JSON has function for scaling but if I would need to scale it even more would it allow me to use the GL scale method)?

Why would you scale it up dynamically? There is no reason to do so.

3 hours ago, Toma™ said:

would it allow me to use the GL scale method

No, but you can use a custom IBakedModel and have a custom model matrix with IBakedModel#handlePerspective(or just transform the quads on the fly when you need to do so).

 

However ultimately I am actually leaning for this being a TEISR use case. Please can you provide some more points of functionality for your gun? Are there part-independent animations? Dynamic textures? Custom shaders? Do you need to render the player's hand? How should your gun be transformed? Are there transformation animations? Are they independent for parts? Do you have parts like gun ammunition clips that may not be rendered at points in time? etc.

In any case a basic JSON is out of the question here unfortunately. The question is - would a custom IBakedModel be sufficient or not.

Posted
1 hour ago, V0idWa1k3r said:

I am not sure this is possible with IBakedModel without some hacky solutions. 

Are you capable of making your own "using animations"?(like eating or drinking).

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

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

Forge and vanilla BlockState generator.

Posted (edited)
8 minutes ago, Animefan8888 said:

Are you capable of making your own "using animations"?(like eating or drinking).

Well, those kind of animations are simple changes of the model matrix over time. So yes, you should be able to do it using either IBakedModel#handlePerspective or by transforming quad position data on the fly. I would assume the former should work just fine.

Edit: I am not sure whether the OP can do it with a custom IBakedModel or not because they have not specified whether they need to also render the player's arm, and I am assuming that they do want that. That is not possible with a IBakedModel

Edited by V0idWa1k3r
Posted
7 minutes ago, V0idWa1k3r said:

Edit: I am not sure whether the OP can do it with a custom IBakedModel or not because they have not specified whether they need to also render the player's arm, and I am assuming that they do want that. That is not possible with a IBakedModel

He can just render the arm separately in one of the Render events when the player is holding his gun(s).

  • Like 1

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

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

Forge and vanilla BlockState generator.

Posted
1 hour ago, V0idWa1k3r said:

Isn't that mod stuck in 1.7.10? I might be looking at a wrong mod though.

 

Yes, and that's quite easy.

 

I am not sure this is possible with IBakedModel without some hacky solutions. 

 

Why would you scale it up dynamically? There is no reason to do so.

No, but you can use a custom IBakedModel and have a custom model matrix with IBakedModel#handlePerspective(or just transform the quads on the fly when you need to do so).

 

However ultimately I am actually leaning for this being a TEISR use case. Please can you provide some more points of functionality for your gun? Are there part-independent animations? Dynamic textures? Custom shaders? Do you need to render the player's hand? How should your gun be transformed? Are there transformation animations? Are they independent for parts? Do you have parts like gun ammunition clips that may not be rendered at points in time? etc.

In any case a basic JSON is out of the question here unfortunately. The question is - would a custom IBakedModel be sufficient or not.

 

Well I would like to possibly add more parts like magazines and use them for animation for reloading. I have 3 different magazine atachments so I would need to create the animation for every single of them.

I don't need dynamic textures, I just need dynamic model rendering based on NBT as explained above.

I wasn't really thinking about shaders and I think I'll leave that alone.

Well if it would be possible (and I know it is) I would like to implement some sort of rendering the arm based on the weapons current state (like reloading to move the hand with the clip etc). Also possibly render the hand holding weapons grip when atached. I know this is not easy, but as soon as I start understanding it atleast a bit I should be able to do more stuff.

I would like to have few animations like reloading and most importantly ADS mode so the shooting can feel more "realistic" rather than just holding your weapon on right side of the screen.

And yes, I have magazines which as explained above should move when reloading. I don't there's need to not render them at all, even when the weapon is empty it should be rendered.

I haven't started models yet, since I'm trying to get the best way to do it.

Posted

Well I suppose in theory it is possible with a custom IBakedModel.

In practice though you will be recalculating quads quite frequently and that may eat a lot of frames.

I would use a TEISR here, even though it is technically possible without one. 

I mean, this

10 minutes ago, Toma™ said:

I have 3 different magazine atachments so I would need to create the animation for every single of them.

would mean that the OP would need to recompute the quad list pretty much every frame of their animation. Or at least parts of it anyway. Potentially all of it if their gun also needs to move during the animation. It should be faster to fill in the rendering buffer with elements each frame than it is to have to recompute quads like this. In theory that is, if anyone has any metrics feel free to correct me here.

Posted
36 minutes ago, V0idWa1k3r said:

In practice though you will be recalculating quads quite frequently and that may eat a lot of frames.

I would use a TEISR here, even though it is technically possible without one. 

I mean, this

Wait, we are forgetting something pretty important. The Model Animation System. 

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

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

Forge and vanilla BlockState generator.

Posted
5 minutes ago, Animefan8888 said:

we are forgetting something pretty important. The Model Animation System. 

Hmm, that's true. I am not very familiar with it though and don't know how to animate items with it, especially if said items are multipart.

Posted
Just now, V0idWa1k3r said:

Hmm, that's true. I am not very familiar with it though and don't know how to animate items with it, especially if said items are multipart.

It supports multipart models and there is a doc page for it here. And there is more information in the following pages after the intro.

 

55 minutes ago, Toma™ said:

the best way to do it.

Might be this.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

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

Forge and vanilla BlockState generator.

Posted
29 minutes ago, Animefan8888 said:

It supports multipart models and there is a doc page for it here. And there is more information in the following pages after the intro.

 

Might be this.

Okay so based on my quick look into the intro for animations you sent here it looks like I will have to go with the JSON models since they're getting the biggest support by most forge features. I'll propably start making some test models and see how it all goes.

Posted

As I said, GunCus does all of this - custom models based on attachments etc., a custom overlay for aiming, a custom matrix and animation for aiming. You should probably take a look at it.

 

https://github.com/CAS-ual-TY/GunCus

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)

  • 2 weeks later...
Posted

So in the end I went with the TEISR. However I have some problems now. The item is rendering properly, but I sometimes move the model and it moves it in the GUI and that is another problem because I would like to keep the json item model for the gui. How would I do that? I am not sure, if I should post some code, since it won't propably help. But anyway, there are some bits of the code:

My baked model:

Spoiler

public class BakedModelGun implements IBakedModel
{
	public BakedModelGun()
	{
	}
	
	@Override
	public boolean isBuiltInRenderer()
	{
		return true;
	}
	
	@Override
	public ItemOverrideList getOverrides()
	{
		return ItemOverrideList.NONE;
	}
	
	@Override
	public TextureAtlasSprite getParticleTexture()
	{
		TextureMap map = Minecraft.getMinecraft().getTextureMapBlocks();
		return map.getMissingSprite();
	}
	
	@Override
	public List<BakedQuad> getQuads(IBlockState state, EnumFacing side, long rand)
	{
		return Collections.EMPTY_LIST;
	}
	
	@Override
	public boolean isAmbientOcclusion() 
	{
		return false;
	}
	
	@Override
	public boolean isGui3d()
	{
		return false;
	}
}

 

 

The teisr class:

Spoiler

public class WeaponTeisr extends TileEntityItemStackRenderer
{
	//model
	private final ModelP92 p92 = new ModelP92();
	
	@Override
	public void renderByItem(ItemStack stack)
	{
		//For every item
		if(stack.getItem() == PMCItems.FLARE_GUN)
		{
			
		}
		
		else if(stack.getItem() == PMCItems.P92)
		{
			GlStateManager.pushMatrix();
			bindTexture("p92");
			setupDefaultItemTranslationAndRotation();
			p92.render();
			GlStateManager.popMatrix();
		}
	}
	
	private void bindTexture(String name)
	{
		ResourceLocation rl = new ResourceLocation(Main.MOD_ID + ":textures/weapons/" + name + ".png");
		Minecraft.getMinecraft().getTextureManager().bindTexture(rl);
	}
	
	private static void setupDefaultItemTranslationAndRotation()
	{
		GlStateManager.scale(0.1, 0.1, 0.1);
		GlStateManager.translate(6, 6, 3);
		GlStateManager.rotate(180, 1, 0, 0);
		GlStateManager.scale(0.8, 0.8, 0.8);
	}
}

 

 

and the bake method:

Spoiler

	@SubscribeEvent
	public void bakeModels(ModelBakeEvent e)
	{
		ModelResourceLocation location;
		IBakedModel main;
		
		//Weapons
		for(int i = 0; i < GunBase.GUNS.size(); i++)
		{
			GunBase gun = GunBase.GUNS.get(i);
			location = new ModelResourceLocation(gun.getRegistryName(), "inventory");
			main = e.getModelRegistry().getObject(location);
			e.getModelRegistry().putObject(location, new BakedModelGun());
		}
	}

 

 

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

    • Hello, I'm having a strange crashing issue when I teleport or enter the nether on a modded world, and I can't understand the crash logs well enough to understand what's causing it. I'm hoping someone here can help:   Crash 1: ---- Minecraft Crash Report ---- // Uh... Did I do that? Time: 2024-11-27 17:40:57 Description: Exception ticking world java.util.ConcurrentModificationException: null     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1095) ~[?:?] {}     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:1049) ~[?:?] {}     at MC-BOOTSTRAP/[email protected]/com.google.common.collect.Iterators$1.next(Iterators.java:146) ~[guava-32.1.2-jre.jar%23134!/:?] {}     at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?] {re:mixin}     at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$updateChunkStatus$6(PersistentEntitySectionManager.java:171) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?] {}     at java.base/java.util.stream.LongPipeline$1$1.accept(LongPipeline.java:177) ~[?:?] {}     at java.base/java.util.PrimitiveIterator$OfLong.forEachRemaining(PrimitiveIterator.java:185) ~[?:?] {}     at java.base/java.util.Spliterators$LongIteratorSpliterator.forEachRemaining(Spliterators.java:2144) ~[?:?] {}     at java.base/java.util.Spliterator$OfLong.forEachRemaining(Spliterator.java:777) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.updateChunkStatus(PersistentEntitySectionManager.java:160) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.updateChunkStatus(PersistentEntitySectionManager.java:146) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkMap.onFullChunkStatusChange(ChunkMap.java:1197) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:chunkloading.ChunkMapMixin from mod ae2,pl:mixin:APP:journeymap.mixins.json:server.ChunkMapAccessor from mod journeymap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin from mod ars_nouveau,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkHolder.demoteFullChunk(ChunkHolder.java:281) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkHolder.updateFutures(ChunkHolder.java:335) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.DistanceManager.lambda$runAllUpdates$1(DistanceManager.java:119) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at java.base/java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at TRANSFORMER/[email protected]/net.minecraft.server.level.DistanceManager.runAllUpdates(DistanceManager.java:119) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache.runDistanceManagerUpdates(ServerChunkCache.java:279) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:318) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:379) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ars_elemental.mixins.json:ServerLevelMixin from mod ars_elemental,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1037) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:917) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:110) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:707) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:267) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1095) ~[?:?] {}     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:1049) ~[?:?] {}     at MC-BOOTSTRAP/[email protected]/com.google.common.collect.Iterators$1.next(Iterators.java:146) ~[guava-32.1.2-jre.jar%23134!/:?] {}     at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?] {re:mixin}     at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$updateChunkStatus$6(PersistentEntitySectionManager.java:171) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?] {}     at java.base/java.util.stream.LongPipeline$1$1.accept(LongPipeline.java:177) ~[?:?] {}     at java.base/java.util.PrimitiveIterator$OfLong.forEachRemaining(PrimitiveIterator.java:185) ~[?:?] {}     at java.base/java.util.Spliterators$LongIteratorSpliterator.forEachRemaining(Spliterators.java:2144) ~[?:?] {}     at java.base/java.util.Spliterator$OfLong.forEachRemaining(Spliterator.java:777) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.updateChunkStatus(PersistentEntitySectionManager.java:160) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.updateChunkStatus(PersistentEntitySectionManager.java:146) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkMap.onFullChunkStatusChange(ChunkMap.java:1197) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:chunkloading.ChunkMapMixin from mod ae2,pl:mixin:APP:journeymap.mixins.json:server.ChunkMapAccessor from mod journeymap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin from mod ars_nouveau,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkHolder.demoteFullChunk(ChunkHolder.java:281) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkHolder.updateFutures(ChunkHolder.java:335) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.DistanceManager.lambda$runAllUpdates$1(DistanceManager.java:119) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at java.base/java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at TRANSFORMER/[email protected]/net.minecraft.server.level.DistanceManager.runAllUpdates(DistanceManager.java:119) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache.runDistanceManagerUpdates(ServerChunkCache.java:279) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:318) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A} -- Affected level -- Details:     All players: 0 total; []     Chunk stats: 4115     Level dimension: minecraft:overworld     Level spawn location: World: (368,82,-304), Section: (at 0,2,0 in 23,5,-19; chunk contains blocks 368,-64,-304 to 383,319,-289), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,-64,-512 to 511,319,-1)     Level time: 3471732 game time, 5256594 day time     Level name: testing eh     Level game mode: Game mode: survival (ID 0). Hardcore: false. Commands: true     Level weather: Rain time: 1 (now: false), thunder time: 1 (now: false)     Known server brands: neoforge     Removed feature flags:     Level was modded: true     Level storage version: 0x04ABD - Anvil     Loaded entity count: 644 Stacktrace:     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerLevel.fillReportDetails(ServerLevel.java:1718) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ars_elemental.mixins.json:ServerLevelMixin from mod ars_elemental,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1040) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:917) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.client.server.IntegratedServer.tickServer(IntegratedServer.java:110) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:runtimedistcleaner:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:707) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:267) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] {} -- System Details -- Details:     Minecraft Version: 1.21.1     Minecraft Version ID: 1.21.1     Operating System: Windows 10 (amd64) version 10.0     Java Version: 21.0.3, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1844665656 bytes (1759 MiB) / 6375342080 bytes (6080 MiB) up to 6375342080 bytes (6080 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i7-11700F @ 2.50GHz     Identifier: Intel64 Family 6 Model 167 Stepping 1     Microarchitecture: Rocket Lake     Frequency (GHz): 2.50     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3060 Ti     Graphics card #0 vendor: NVIDIA     Graphics card #0 VRAM (MiB): 8192.00     Graphics card #0 deviceId: VideoController1     Graphics card #0 versionInfo: 31.0.15.1640     Memory slot #0 capacity (MiB): 16384.00     Memory slot #0 clockSpeed (GHz): 2.67     Memory slot #0 type: DDR4     Virtual memory max (MiB): 21242.80     Virtual memory used (MiB): 18044.57     Swap memory total (MiB): 5021.48     Swap memory used (MiB): 198.77     Space in storage for jna.tmpdir (MiB): available: 116449.34, total: 976134.31     Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): available: 116449.34, total: 976134.31     Space in storage for io.netty.native.workdir (MiB): available: 116449.34, total: 976134.31     Space in storage for java.io.tmpdir (MiB): available: 116449.34, total: 976134.31     Space in storage for workdir (MiB): available: 116449.34, total: 976134.31     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx6080m -Xms256m     Server Running: true     Player Count: 2 / 8; [ServerPlayer['deathray6002'/4, l='ServerLevel[testing eh]', x=75.90, y=59.00, z=-93.98], ServerPlayer['_Fire_Fly_2'/3504, l='ServerLevel[testing eh]', x=81.50, y=59.00, z=-97.63]]     Active Data Packs: vanilla, mod_data, mod/sodium, mod/smartbrainlib (incompatible), mod/ae2jeiintegration, mod/cyclopscore (incompatible), mod/fabric_renderer_api_v1, mod/mekanismcovers, mod/geckolib, mod/sophisticatedstorage (incompatible), mod/jei (incompatible), mod/ae2 (incompatible), mod/ae2wtlib (incompatible), mod/ae2wtlib_api, mod/everlastingabilities (incompatible), mod/commonnetworking (incompatible), mod/doggytalents (incompatible), mod/mcwwindows (incompatible), mod/sophisticatedcore (incompatible), mod/journeymap (incompatible), mod/neoforge, mod/artifacts, mod/fabric_block_view_api_v2, mod/badpackets (incompatible), mod/sophisticatedbackpacks (incompatible), mod/relics (incompatible), mod/mcjtylib, mod/rftoolsbase, mod/xnet, mod/fusion, mod/cloth_config (incompatible), mod/mekanism_extras (incompatible), mod/handcrafted, mod/mekanism_unleashed, mod/mekanism, mod/mekanismgenerators, mod/gmut (incompatible), mod/fabric_api_base, mod/mousetweaks (incompatible), mod/mekanismadditions, mod/ae2things (incompatible), mod/mekanism_lasers (incompatible), mod/supermartijn642corelib, mod/e4mc_minecraft (incompatible), mod/wthit,waila (incompatible), mod/curios (incompatible), mod/ars_nouveau (incompatible), mod/patchouli (incompatible), mod/ars_additions (incompatible), mod/ars_controle (incompatible), mod/ars_elemental (incompatible), mod/elevatorid, mod/ftbultimine (incompatible), mod/ae2qolrecipes (incompatible), mod/modonomicon (incompatible), mod/resourcefullib, mod/dtnpaletteofpaws (incompatible), mod/mekanismtools, mod/architectury (incompatible), mod/ftblibrary (incompatible), mod/octolib, mod/lootr, mod/connectedglass, mod/occultism, mod/ars_ocultas (incompatible), mod/fabric_rendering_data_attachment_v1, mod/appmek (incompatible), mod/expandability, mod/journeymap_api (incompatible)     Available Data Packs: bundle, trade_rebalance, vanilla, mod/ae2 (incompatible), mod/ae2jeiintegration, mod/ae2qolrecipes (incompatible), mod/ae2things (incompatible), mod/ae2wtlib (incompatible), mod/ae2wtlib_api, mod/appmek (incompatible), mod/architectury (incompatible), mod/ars_additions (incompatible), mod/ars_controle (incompatible), mod/ars_elemental (incompatible), mod/ars_nouveau (incompatible), mod/ars_ocultas (incompatible), mod/artifacts, mod/badpackets (incompatible), mod/cloth_config (incompatible), mod/commonnetworking (incompatible), mod/connectedglass, mod/curios (incompatible), mod/cyclopscore (incompatible), mod/doggytalents (incompatible), mod/dtnpaletteofpaws (incompatible), mod/e4mc_minecraft (incompatible), mod/elevatorid, mod/everlastingabilities (incompatible), mod/expandability, mod/fabric_api_base, mod/fabric_block_view_api_v2, mod/fabric_renderer_api_v1, mod/fabric_rendering_data_attachment_v1, mod/ftblibrary (incompatible), mod/ftbultimine (incompatible), mod/fusion, mod/geckolib, mod/gmut (incompatible), mod/handcrafted, mod/jei (incompatible), mod/journeymap (incompatible), mod/journeymap_api (incompatible), mod/lootr, mod/mcjtylib, mod/mcwwindows (incompatible), mod/mekanism, mod/mekanism_extras (incompatible), mod/mekanism_lasers (incompatible), mod/mekanism_unleashed, mod/mekanismadditions, mod/mekanismcovers, mod/mekanismgenerators, mod/mekanismtools, mod/modonomicon (incompatible), mod/mousetweaks (incompatible), mod/neoforge, mod/occultism, mod/octolib, mod/patchouli (incompatible), mod/relics (incompatible), mod/resourcefullib, mod/rftoolsbase, mod/smartbrainlib (incompatible), mod/sodium, mod/sophisticatedbackpacks (incompatible), mod/sophisticatedcore (incompatible), mod/sophisticatedstorage (incompatible), mod/supermartijn642corelib, mod/wthit,waila (incompatible), mod/xnet, mod_data     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     World Seed: -4893969446266667034     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'neoforge'; Server brand changed to 'neoforge'     Launched Version: neoforge-21.1.73     ModLauncher: 11.0.4+main.d2e20e43     ModLauncher launch target: forgeclient     ModLauncher services:         sponge-mixin-0.15.2+mixin.0.8.7.jar mixin PLUGINSERVICE         loader-4.0.31.jar slf4jfixer PLUGINSERVICE         loader-4.0.31.jar runtime_enum_extender PLUGINSERVICE         at-modlauncher-10.0.1.jar accesstransformer PLUGINSERVICE         loader-4.0.31.jar runtimedistcleaner PLUGINSERVICE         modlauncher-11.0.4.jar mixin TRANSFORMATIONSERVICE         modlauncher-11.0.4.jar fml TRANSFORMATIONSERVICE     FML Language Providers:         [email protected]         [email protected]         [email protected]     Mod List:         ae2jeiintegration-1.2.0.jar                       |AE2 JEI Integration           |ae2jeiintegration             |1.2.0               |Manifest: NOSIGNATURE         ae2qolrecipes-neoforge-1.21.x-1.2.0.jar           |AE2 QoL Recipes               |ae2qolrecipes                 |1.2.0               |Manifest: NOSIGNATURE         AE2-Things-1.4.2-beta.jar                         |AE2 Things                    |ae2things                     |1.4.2-beta          |Manifest: NOSIGNATURE         ae2wtlib-19.1.6-beta.jar                          |AE2WTLib                      |ae2wtlib                      |19.1.6-beta         |Manifest: NOSIGNATURE         de.mari_023.ae2wtlib_api-19.1.6-beta.jar          |AE2WTLib API                  |ae2wtlib_api                  |19.1.6-beta         |Manifest: NOSIGNATURE         appliedenergistics2-19.0.23-beta.jar              |Applied Energistics 2         |ae2                           |19.0.23-beta        |Manifest: NOSIGNATURE         Applied-Mekanistics-1.6.1.jar                     |Applied Mekanistics           |appmek                        |1.6.1               |Manifest: NOSIGNATURE         architectury-13.0.8-neoforge.jar                  |Architectury                  |architectury                  |13.0.8              |Manifest: NOSIGNATURE         ars_additions-1.21.1-21.1.3.jar                   |Ars Additions                 |ars_additions                 |1.21.1-21.1.3       |Manifest: NOSIGNATURE         ars_controle-1.21.0-1.2.0.jar                     |Ars Controle                  |ars_controle                  |1.21.0-1.2.0        |Manifest: NOSIGNATURE         ars_elemental-1.21.1-0.7.0.8.jar                  |Ars Elemental                 |ars_elemental                 |0.7.0.8             |Manifest: NOSIGNATURE         ars_nouveau-1.21.1-5.2.2-all.jar                  |Ars Nouveau                   |ars_nouveau                   |5.2.2               |Manifest: NOSIGNATURE         ars_ocultas-1.21.0-2.0.1.jar                      |Ars Ocultas                   |ars_ocultas                   |2.0.1               |Manifest: NOSIGNATURE         artifacts-neoforge-12.0.5.jar                     |Artifacts                     |artifacts                     |12.0.5              |Manifest: NOSIGNATURE         badpackets-neo-0.8.1.jar                          |Bad Packets                   |badpackets                    |0.8.1               |Manifest: NOSIGNATURE         cloth-config-15.0.140-neoforge.jar                |Cloth Config v15 API          |cloth_config                  |15.0.140            |Manifest: NOSIGNATURE         common-networking-neoforge-1.0.16-1.21.1.jar      |Common Networking             |commonnetworking              |1.0.16-1.21.1       |Manifest: NOSIGNATURE         connectedglass-1.1.12-neoforge-mc1.21.jar         |Connected Glass               |connectedglass                |1.1.12              |Manifest: NOSIGNATURE         curios-neoforge-9.0.14+1.21.1.jar                 |Curios API                    |curios                        |9.0.14+1.21.1       |Manifest: NOSIGNATURE         cyclopscore-1.21.1-neoforge-1.25.2.jar            |Cyclops Core                  |cyclopscore                   |1.25.2              |Manifest: NOSIGNATURE         DoggyTalentsNext-1.21.1-1.18.33.jar               |Doggy Talents Next            |doggytalents                  |1.18.33             |Manifest: NOSIGNATURE         DTNPaletteOfPaws-1.21-1.2.4.jar                   |DTN's Palette Of Paws         |dtnpaletteofpaws              |1.2.4               |Manifest: NOSIGNATURE         e4mc_minecraft-neoforge-5.2.1.jar                 |e4mc                          |e4mc_minecraft                |5.2.1               |Manifest: NOSIGNATURE         elevatorid-neoforge-1.21.1-1.11.3.jar             |ElevatorMod                   |elevatorid                    |1.21.1-1.11.3       |Manifest: NOSIGNATURE         everlastingabilities-1.21.1-neoforge-2.3.0.jar    |EverlastingAbilities          |everlastingabilities          |2.3.0               |Manifest: NOSIGNATURE         expandability-neoforge-12.0.0.jar                 |ExpandAbility                 |expandability                 |12.0.0              |Manifest: NOSIGNATURE         fabric-api-base-0.4.42+d1308ded19.jar             |Forgified Fabric API Base     |fabric_api_base               |0.4.42+d1308ded19   |Manifest: NOSIGNATURE         fabric-block-view-api-v2-1.0.10+9afaaf8c19.jar    |Forgified Fabric BlockView API|fabric_block_view_api_v2      |1.0.10+9afaaf8c19   |Manifest: NOSIGNATURE         fabric-renderer-api-v1-3.4.0+acb05a3919.jar       |Forgified Fabric Renderer API |fabric_renderer_api_v1        |3.4.0+acb05a3919    |Manifest: NOSIGNATURE         fabric-rendering-data-attachment-v1-0.3.48+73761d2|Forgified Fabric Rendering Dat|fabric_rendering_data_attachme|0.3.48+73761d2e19   |Manifest: NOSIGNATURE         ftb-library-neoforge-2101.1.4.jar                 |FTB Library                   |ftblibrary                    |2101.1.4            |Manifest: NOSIGNATURE         ftb-ultimine-neoforge-2101.1.1.jar                |FTB Ultimine                  |ftbultimine                   |2101.1.1            |Manifest: NOSIGNATURE         fusion-1.1.1a-neoforge-mc1.21.jar                 |Fusion                        |fusion                        |1.1.1+a             |Manifest: NOSIGNATURE         geckolib-neoforge-1.21.1-4.6.6.jar                |GeckoLib 4                    |geckolib                      |4.6.6               |Manifest: NOSIGNATURE         GravitationalModulatingAdditionalUnit-1.21.1-6.0.j|Gravitational Modulating Addit|gmut                          |6.0                 |Manifest: NOSIGNATURE         handcrafted-neoforge-1.21.1-4.0.2.jar             |Handcrafted                   |handcrafted                   |4.0.2               |Manifest: NOSIGNATURE         journeymap-neoforge-1.21.1-6.0.0-beta.28.jar      |Journeymap                    |journeymap                    |1.21.1-6.0.0-beta.28|Manifest: NOSIGNATURE         journeymap-api-neoforge-2.0.0-1.21.1-SNAPSHOT.jar |JourneyMap API                |journeymap_api                |2.0.0               |Manifest: NOSIGNATURE         jei-1.21.1-neoforge-19.21.0.247.jar               |Just Enough Items             |jei                           |19.21.0.247         |Manifest: NOSIGNATURE         lootr-neoforge-1.21-1.10.33.85.jar                |Lootr                         |lootr                         |1.21-1.10.33.85     |Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.21.1neoforge.jar            |Macaw's Windows               |mcwwindows                    |2.3.2               |Manifest: NOSIGNATURE         mcjtylib-1.21-9.0.4.jar                           |McJtyLib                      |mcjtylib                      |1.21-9.0.4          |Manifest: NOSIGNATURE         Mekanism-1.21.1-10.7.7.64.jar                     |Mekanism                      |mekanism                      |10.7.7              |Manifest: NOSIGNATURE         mekanismcovers-1.1-BETA+1.21.jar                  |Mekanism Covers               |mekanismcovers                |1.1-BETA+1.21       |Manifest: NOSIGNATURE         mekanism_extras-1.21.1-1.0.2.jar                  |Mekanism Extras               |mekanism_extras               |1.21.1-1.0.2        |Manifest: NOSIGNATURE         MekanismLasers-1.21.1-1.1.7.jar                   |Mekanism Lasers               |mekanism_lasers               |1.1.7               |Manifest: NOSIGNATURE         mekanism_unleashed-1.21-0.2.1.jar                 |Mekanism Unleashed            |mekanism_unleashed            |1.21-0.2.1          |Manifest: NOSIGNATURE         MekanismAdditions-1.21.1-10.7.7.64.jar            |Mekanism: Additions           |mekanismadditions             |10.7.7              |Manifest: NOSIGNATURE         MekanismGenerators-1.21.1-10.7.7.64.jar           |Mekanism: Generators          |mekanismgenerators            |10.7.7              |Manifest: NOSIGNATURE         MekanismTools-1.21.1-10.7.7.64.jar                |Mekanism: Tools               |mekanismtools                 |10.7.7              |Manifest: NOSIGNATURE         client-1.21.1-20240808.144430-srg.jar             |Minecraft                     |minecraft                     |1.21.1              |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         modonomicon-1.21.1-neoforge-1.108.1.jar           |Modonomicon                   |modonomicon                   |1.108.1             |Manifest: NOSIGNATURE         MouseTweaks-neoforge-mc1.21-2.26.1.jar            |Mouse Tweaks                  |mousetweaks                   |2.26.1              |Manifest: NOSIGNATURE         neoforge-21.1.73-universal.jar                    |NeoForge                      |neoforge                      |21.1.73             |Manifest: NOSIGNATURE         occultism-1.21.1-neoforge-1.165.0.jar             |Occultism                     |occultism                     |1.165.0             |Manifest: NOSIGNATURE         OctoLib-NEOFORGE-0.4.2.jar                        |OctoLib                       |octolib                       |0.4.2               |Manifest: NOSIGNATURE         Patchouli-1.21-88-NEOFORGE-SNAPSHOT.jar           |Patchouli                     |patchouli                     |1.21-88-NEOFORGE-SNA|Manifest: NOSIGNATURE         relics-1.21-0.9.2.0.jar                           |Relics                        |relics                        |0.9.2.0             |Manifest: NOSIGNATURE         resourcefullib-neoforge-1.21-3.0.11.jar           |Resourceful Lib               |resourcefullib                |3.0.11              |Manifest: NOSIGNATURE         rftoolsbase-1.21-6.0.1.jar                        |RFToolsBase                   |rftoolsbase                   |1.21-6.0.1          |Manifest: NOSIGNATURE         SmartBrainLib-neoforge-1.21.1-1.16.1.jar          |SmartBrainLib                 |smartbrainlib                 |1.16.1              |Manifest: NOSIGNATURE         sodium-neoforge-0.6.0-beta.4+mc1.21.1.jar         |Sodium                        |sodium                        |0.6.0-beta.4+mc1.21.|Manifest: NOSIGNATURE         sophisticatedbackpacks-1.21-3.20.17.1113.jar      |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.17             |Manifest: NOSIGNATURE         sophisticatedcore-1.21-0.6.45.722.jar             |Sophisticated Core            |sophisticatedcore             |0.6.45              |Manifest: NOSIGNATURE         sophisticatedstorage-1.21-0.10.45.910.jar         |Sophisticated Storage         |sophisticatedstorage          |0.10.45             |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17i-neoforge-mc1.21.jar|SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17+i            |Manifest: NOSIGNATURE         wthit-neo-12.4.2.jar                              |wthit                         |wthit                         |12.4.2              |Manifest: NOSIGNATURE         xnet-1.21-7.0.1.jar                               |XNet                          |xnet                          |1.21-7.0.1          |Manifest: NOSIGNATURE     Crash Report UUID: 04c99056-7645-47e5-8b5f-e5ea4e743bf0     FML: 4.0.31     NeoForge: 21.1.73     Crash 2:   ---- Minecraft Crash Report ---- // Shall we play a game? Time: 2024-11-28 08:49:08 Description: Exception in server tick loop java.util.ConcurrentModificationException: null     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1095) ~[?:?] {}     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:1049) ~[?:?] {}     at MC-BOOTSTRAP/[email protected]/com.google.common.collect.Iterators$1.next(Iterators.java:146) ~[guava-32.1.2-jre.jar%23134!/:?] {}     at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?] {re:mixin}     at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$updateChunkStatus$6(PersistentEntitySectionManager.java:171) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?] {}     at java.base/java.util.stream.LongPipeline$1$1.accept(LongPipeline.java:177) ~[?:?] {}     at java.base/java.util.PrimitiveIterator$OfLong.forEachRemaining(PrimitiveIterator.java:185) ~[?:?] {}     at java.base/java.util.Spliterators$LongIteratorSpliterator.forEachRemaining(Spliterators.java:2144) ~[?:?] {}     at java.base/java.util.Spliterator$OfLong.forEachRemaining(Spliterator.java:777) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?] {}     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?] {}     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.updateChunkStatus(PersistentEntitySectionManager.java:160) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.world.level.entity.PersistentEntitySectionManager.updateChunkStatus(PersistentEntitySectionManager.java:146) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkMap.onFullChunkStatusChange(ChunkMap.java:1197) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:chunkloading.ChunkMapMixin from mod ae2,pl:mixin:APP:journeymap.mixins.json:server.ChunkMapAccessor from mod journeymap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin from mod ars_nouveau,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkHolder.demoteFullChunk(ChunkHolder.java:281) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ChunkHolder.updateFutures(ChunkHolder.java:335) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.DistanceManager.lambda$runAllUpdates$1(DistanceManager.java:119) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at java.base/java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at TRANSFORMER/[email protected]/net.minecraft.server.level.DistanceManager.runAllUpdates(DistanceManager.java:119) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache.runDistanceManagerUpdates(ServerChunkCache.java:279) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.pollTask(ServerChunkCache.java:564) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:classloading}     at TRANSFORMER/[email protected]/net.minecraft.server.level.ServerChunkCache.pollTask(ServerChunkCache.java:275) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:860) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:849) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:111) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:825) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:712) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at TRANSFORMER/[email protected]/net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:267) ~[client-1.21.1-20240808.144430-srg.jar%23237!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] {} 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.0.3, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 2253319480 bytes (2148 MiB) / 4714397696 bytes (4496 MiB) up to 6375342080 bytes (6080 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i7-11700F @ 2.50GHz     Identifier: Intel64 Family 6 Model 167 Stepping 1     Microarchitecture: Rocket Lake     Frequency (GHz): 2.50     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3060 Ti     Graphics card #0 vendor: NVIDIA     Graphics card #0 VRAM (MiB): 8192.00     Graphics card #0 deviceId: VideoController1     Graphics card #0 versionInfo: 31.0.15.1640     Memory slot #0 capacity (MiB): 16384.00     Memory slot #0 clockSpeed (GHz): 2.67     Memory slot #0 type: DDR4     Virtual memory max (MiB): 19165.32     Virtual memory used (MiB): 12895.84     Swap memory total (MiB): 2944.00     Swap memory used (MiB): 0.00     Space in storage for jna.tmpdir (MiB): available: 117624.45, total: 976134.31     Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): available: 117624.45, total: 976134.31     Space in storage for io.netty.native.workdir (MiB): available: 117624.45, total: 976134.31     Space in storage for java.io.tmpdir (MiB): available: 117624.45, total: 976134.31     Space in storage for workdir (MiB): available: 117624.45, total: 976134.31     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx6080m -Xms256m     Server Running: true     Player Count: 2 / 8; [ServerPlayer['deathray6002'/493, l='ServerLevel[testing eh]', x=81.50, y=59.00, z=-97.86], ServerPlayer['_Fire_Fly_2'/9219, l='ServerLevel[testing eh]', x=-13.16, y=50.47, z=16.67]]     Active Data Packs: vanilla, mod_data, mod/sodium, mod/smartbrainlib (incompatible), mod/ae2jeiintegration, mod/cyclopscore (incompatible), mod/fabric_renderer_api_v1, mod/mekanismcovers, mod/geckolib, mod/sophisticatedstorage (incompatible), mod/jei (incompatible), mod/ae2 (incompatible), mod/ae2wtlib (incompatible), mod/ae2wtlib_api, mod/everlastingabilities (incompatible), mod/commonnetworking (incompatible), mod/doggytalents (incompatible), mod/mcwwindows (incompatible), mod/sophisticatedcore (incompatible), mod/journeymap (incompatible), mod/neoforge, mod/artifacts, mod/fabric_block_view_api_v2, mod/badpackets (incompatible), mod/sophisticatedbackpacks (incompatible), mod/relics (incompatible), mod/mcjtylib, mod/rftoolsbase, mod/xnet, mod/fusion, mod/cloth_config (incompatible), mod/mekanism_extras (incompatible), mod/handcrafted, mod/mekanism_unleashed, mod/mekanism, mod/mekanismgenerators, mod/gmut (incompatible), mod/fabric_api_base, mod/mousetweaks (incompatible), mod/mekanismadditions, mod/ae2things (incompatible), mod/mekanism_lasers (incompatible), mod/supermartijn642corelib, mod/e4mc_minecraft (incompatible), mod/wthit,waila (incompatible), mod/curios (incompatible), mod/ars_nouveau (incompatible), mod/patchouli (incompatible), mod/ars_additions (incompatible), mod/ars_controle (incompatible), mod/ars_elemental (incompatible), mod/elevatorid, mod/ftbultimine (incompatible), mod/ae2qolrecipes (incompatible), mod/modonomicon (incompatible), mod/resourcefullib, mod/dtnpaletteofpaws (incompatible), mod/mekanismtools, mod/architectury (incompatible), mod/ftblibrary (incompatible), mod/octolib, mod/lootr, mod/connectedglass, mod/occultism, mod/ars_ocultas (incompatible), mod/fabric_rendering_data_attachment_v1, mod/appmek (incompatible), mod/expandability, mod/journeymap_api (incompatible)     Available Data Packs: bundle, trade_rebalance, vanilla, mod/ae2 (incompatible), mod/ae2jeiintegration, mod/ae2qolrecipes (incompatible), mod/ae2things (incompatible), mod/ae2wtlib (incompatible), mod/ae2wtlib_api, mod/appmek (incompatible), mod/architectury (incompatible), mod/ars_additions (incompatible), mod/ars_controle (incompatible), mod/ars_elemental (incompatible), mod/ars_nouveau (incompatible), mod/ars_ocultas (incompatible), mod/artifacts, mod/badpackets (incompatible), mod/cloth_config (incompatible), mod/commonnetworking (incompatible), mod/connectedglass, mod/curios (incompatible), mod/cyclopscore (incompatible), mod/doggytalents (incompatible), mod/dtnpaletteofpaws (incompatible), mod/e4mc_minecraft (incompatible), mod/elevatorid, mod/everlastingabilities (incompatible), mod/expandability, mod/fabric_api_base, mod/fabric_block_view_api_v2, mod/fabric_renderer_api_v1, mod/fabric_rendering_data_attachment_v1, mod/ftblibrary (incompatible), mod/ftbultimine (incompatible), mod/fusion, mod/geckolib, mod/gmut (incompatible), mod/handcrafted, mod/jei (incompatible), mod/journeymap (incompatible), mod/journeymap_api (incompatible), mod/lootr, mod/mcjtylib, mod/mcwwindows (incompatible), mod/mekanism, mod/mekanism_extras (incompatible), mod/mekanism_lasers (incompatible), mod/mekanism_unleashed, mod/mekanismadditions, mod/mekanismcovers, mod/mekanismgenerators, mod/mekanismtools, mod/modonomicon (incompatible), mod/mousetweaks (incompatible), mod/neoforge, mod/occultism, mod/octolib, mod/patchouli (incompatible), mod/relics (incompatible), mod/resourcefullib, mod/rftoolsbase, mod/smartbrainlib (incompatible), mod/sodium, mod/sophisticatedbackpacks (incompatible), mod/sophisticatedcore (incompatible), mod/sophisticatedstorage (incompatible), mod/supermartijn642corelib, mod/wthit,waila (incompatible), mod/xnet, mod_data     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     World Seed: -4893969446266667034     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'neoforge'; Server brand changed to 'neoforge'     Launched Version: neoforge-21.1.73     ModLauncher: 11.0.4+main.d2e20e43     ModLauncher launch target: forgeclient     ModLauncher services:         sponge-mixin-0.15.2+mixin.0.8.7.jar mixin PLUGINSERVICE         loader-4.0.31.jar slf4jfixer PLUGINSERVICE         loader-4.0.31.jar runtime_enum_extender PLUGINSERVICE         at-modlauncher-10.0.1.jar accesstransformer PLUGINSERVICE         loader-4.0.31.jar runtimedistcleaner PLUGINSERVICE         modlauncher-11.0.4.jar mixin TRANSFORMATIONSERVICE         modlauncher-11.0.4.jar fml TRANSFORMATIONSERVICE     FML Language Providers:         [email protected]         [email protected]         [email protected]     Mod List:         ae2jeiintegration-1.2.0.jar                       |AE2 JEI Integration           |ae2jeiintegration             |1.2.0               |Manifest: NOSIGNATURE         ae2qolrecipes-neoforge-1.21.x-1.2.0.jar           |AE2 QoL Recipes               |ae2qolrecipes                 |1.2.0               |Manifest: NOSIGNATURE         AE2-Things-1.4.2-beta.jar                         |AE2 Things                    |ae2things                     |1.4.2-beta          |Manifest: NOSIGNATURE         ae2wtlib-19.1.6-beta.jar                          |AE2WTLib                      |ae2wtlib                      |19.1.6-beta         |Manifest: NOSIGNATURE         de.mari_023.ae2wtlib_api-19.1.6-beta.jar          |AE2WTLib API                  |ae2wtlib_api                  |19.1.6-beta         |Manifest: NOSIGNATURE         appliedenergistics2-19.0.23-beta.jar              |Applied Energistics 2         |ae2                           |19.0.23-beta        |Manifest: NOSIGNATURE         Applied-Mekanistics-1.6.1.jar                     |Applied Mekanistics           |appmek                        |1.6.1               |Manifest: NOSIGNATURE         architectury-13.0.8-neoforge.jar                  |Architectury                  |architectury                  |13.0.8              |Manifest: NOSIGNATURE         ars_additions-1.21.1-21.1.3.jar                   |Ars Additions                 |ars_additions                 |1.21.1-21.1.3       |Manifest: NOSIGNATURE         ars_controle-1.21.0-1.2.0.jar                     |Ars Controle                  |ars_controle                  |1.21.0-1.2.0        |Manifest: NOSIGNATURE         ars_elemental-1.21.1-0.7.0.8.jar                  |Ars Elemental                 |ars_elemental                 |0.7.0.8             |Manifest: NOSIGNATURE         ars_nouveau-1.21.1-5.2.2-all.jar                  |Ars Nouveau                   |ars_nouveau                   |5.2.2               |Manifest: NOSIGNATURE         ars_ocultas-1.21.0-2.0.1.jar                      |Ars Ocultas                   |ars_ocultas                   |2.0.1               |Manifest: NOSIGNATURE         artifacts-neoforge-12.0.5.jar                     |Artifacts                     |artifacts                     |12.0.5              |Manifest: NOSIGNATURE         badpackets-neo-0.8.1.jar                          |Bad Packets                   |badpackets                    |0.8.1               |Manifest: NOSIGNATURE         cloth-config-15.0.140-neoforge.jar                |Cloth Config v15 API          |cloth_config                  |15.0.140            |Manifest: NOSIGNATURE         common-networking-neoforge-1.0.16-1.21.1.jar      |Common Networking             |commonnetworking              |1.0.16-1.21.1       |Manifest: NOSIGNATURE         connectedglass-1.1.12-neoforge-mc1.21.jar         |Connected Glass               |connectedglass                |1.1.12              |Manifest: NOSIGNATURE         curios-neoforge-9.0.14+1.21.1.jar                 |Curios API                    |curios                        |9.0.14+1.21.1       |Manifest: NOSIGNATURE         cyclopscore-1.21.1-neoforge-1.25.2.jar            |Cyclops Core                  |cyclopscore                   |1.25.2              |Manifest: NOSIGNATURE         DoggyTalentsNext-1.21.1-1.18.33.jar               |Doggy Talents Next            |doggytalents                  |1.18.33             |Manifest: NOSIGNATURE         DTNPaletteOfPaws-1.21-1.2.4.jar                   |DTN's Palette Of Paws         |dtnpaletteofpaws              |1.2.4               |Manifest: NOSIGNATURE         e4mc_minecraft-neoforge-5.2.1.jar                 |e4mc                          |e4mc_minecraft                |5.2.1               |Manifest: NOSIGNATURE         elevatorid-neoforge-1.21.1-1.11.3.jar             |ElevatorMod                   |elevatorid                    |1.21.1-1.11.3       |Manifest: NOSIGNATURE         everlastingabilities-1.21.1-neoforge-2.3.0.jar    |EverlastingAbilities          |everlastingabilities          |2.3.0               |Manifest: NOSIGNATURE         expandability-neoforge-12.0.0.jar                 |ExpandAbility                 |expandability                 |12.0.0              |Manifest: NOSIGNATURE         fabric-api-base-0.4.42+d1308ded19.jar             |Forgified Fabric API Base     |fabric_api_base               |0.4.42+d1308ded19   |Manifest: NOSIGNATURE         fabric-block-view-api-v2-1.0.10+9afaaf8c19.jar    |Forgified Fabric BlockView API|fabric_block_view_api_v2      |1.0.10+9afaaf8c19   |Manifest: NOSIGNATURE         fabric-renderer-api-v1-3.4.0+acb05a3919.jar       |Forgified Fabric Renderer API |fabric_renderer_api_v1        |3.4.0+acb05a3919    |Manifest: NOSIGNATURE         fabric-rendering-data-attachment-v1-0.3.48+73761d2|Forgified Fabric Rendering Dat|fabric_rendering_data_attachme|0.3.48+73761d2e19   |Manifest: NOSIGNATURE         ftb-library-neoforge-2101.1.4.jar                 |FTB Library                   |ftblibrary                    |2101.1.4            |Manifest: NOSIGNATURE         ftb-ultimine-neoforge-2101.1.1.jar                |FTB Ultimine                  |ftbultimine                   |2101.1.1            |Manifest: NOSIGNATURE         fusion-1.1.1a-neoforge-mc1.21.jar                 |Fusion                        |fusion                        |1.1.1+a             |Manifest: NOSIGNATURE         geckolib-neoforge-1.21.1-4.6.6.jar                |GeckoLib 4                    |geckolib                      |4.6.6               |Manifest: NOSIGNATURE         GravitationalModulatingAdditionalUnit-1.21.1-6.0.j|Gravitational Modulating Addit|gmut                          |6.0                 |Manifest: NOSIGNATURE         handcrafted-neoforge-1.21.1-4.0.2.jar             |Handcrafted                   |handcrafted                   |4.0.2               |Manifest: NOSIGNATURE         journeymap-neoforge-1.21.1-6.0.0-beta.28.jar      |Journeymap                    |journeymap                    |1.21.1-6.0.0-beta.28|Manifest: NOSIGNATURE         journeymap-api-neoforge-2.0.0-1.21.1-SNAPSHOT.jar |JourneyMap API                |journeymap_api                |2.0.0               |Manifest: NOSIGNATURE         jei-1.21.1-neoforge-19.21.0.247.jar               |Just Enough Items             |jei                           |19.21.0.247         |Manifest: NOSIGNATURE         lootr-neoforge-1.21-1.10.33.85.jar                |Lootr                         |lootr                         |1.21-1.10.33.85     |Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.21.1neoforge.jar            |Macaw's Windows               |mcwwindows                    |2.3.2               |Manifest: NOSIGNATURE         mcjtylib-1.21-9.0.4.jar                           |McJtyLib                      |mcjtylib                      |1.21-9.0.4          |Manifest: NOSIGNATURE         Mekanism-1.21.1-10.7.7.64.jar                     |Mekanism                      |mekanism                      |10.7.7              |Manifest: NOSIGNATURE         mekanismcovers-1.1-BETA+1.21.jar                  |Mekanism Covers               |mekanismcovers                |1.1-BETA+1.21       |Manifest: NOSIGNATURE         mekanism_extras-1.21.1-1.0.2.jar                  |Mekanism Extras               |mekanism_extras               |1.21.1-1.0.2        |Manifest: NOSIGNATURE         MekanismLasers-1.21.1-1.1.7.jar                   |Mekanism Lasers               |mekanism_lasers               |1.1.7               |Manifest: NOSIGNATURE         mekanism_unleashed-1.21-0.2.1.jar                 |Mekanism Unleashed            |mekanism_unleashed            |1.21-0.2.1          |Manifest: NOSIGNATURE         MekanismAdditions-1.21.1-10.7.7.64.jar            |Mekanism: Additions           |mekanismadditions             |10.7.7              |Manifest: NOSIGNATURE         MekanismGenerators-1.21.1-10.7.7.64.jar           |Mekanism: Generators          |mekanismgenerators            |10.7.7              |Manifest: NOSIGNATURE         MekanismTools-1.21.1-10.7.7.64.jar                |Mekanism: Tools               |mekanismtools                 |10.7.7              |Manifest: NOSIGNATURE         client-1.21.1-20240808.144430-srg.jar             |Minecraft                     |minecraft                     |1.21.1              |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         modonomicon-1.21.1-neoforge-1.108.1.jar           |Modonomicon                   |modonomicon                   |1.108.1             |Manifest: NOSIGNATURE         MouseTweaks-neoforge-mc1.21-2.26.1.jar            |Mouse Tweaks                  |mousetweaks                   |2.26.1              |Manifest: NOSIGNATURE         neoforge-21.1.73-universal.jar                    |NeoForge                      |neoforge                      |21.1.73             |Manifest: NOSIGNATURE         occultism-1.21.1-neoforge-1.165.0.jar             |Occultism                     |occultism                     |1.165.0             |Manifest: NOSIGNATURE         OctoLib-NEOFORGE-0.4.2.jar                        |OctoLib                       |octolib                       |0.4.2               |Manifest: NOSIGNATURE         Patchouli-1.21-88-NEOFORGE-SNAPSHOT.jar           |Patchouli                     |patchouli                     |1.21-88-NEOFORGE-SNA|Manifest: NOSIGNATURE         relics-1.21-0.9.2.0.jar                           |Relics                        |relics                        |0.9.2.0             |Manifest: NOSIGNATURE         resourcefullib-neoforge-1.21-3.0.11.jar           |Resourceful Lib               |resourcefullib                |3.0.11              |Manifest: NOSIGNATURE         rftoolsbase-1.21-6.0.1.jar                        |RFToolsBase                   |rftoolsbase                   |1.21-6.0.1          |Manifest: NOSIGNATURE         SmartBrainLib-neoforge-1.21.1-1.16.1.jar          |SmartBrainLib                 |smartbrainlib                 |1.16.1              |Manifest: NOSIGNATURE         sodium-neoforge-0.6.0-beta.4+mc1.21.1.jar         |Sodium                        |sodium                        |0.6.0-beta.4+mc1.21.|Manifest: NOSIGNATURE         sophisticatedbackpacks-1.21-3.20.17.1113.jar      |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.17             |Manifest: NOSIGNATURE         sophisticatedcore-1.21-0.6.45.722.jar             |Sophisticated Core            |sophisticatedcore             |0.6.45              |Manifest: NOSIGNATURE         sophisticatedstorage-1.21-0.10.45.910.jar         |Sophisticated Storage         |sophisticatedstorage          |0.10.45             |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17i-neoforge-mc1.21.jar|SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17+i            |Manifest: NOSIGNATURE         wthit-neo-12.4.2.jar                              |wthit                         |wthit                         |12.4.2              |Manifest: NOSIGNATURE         xnet-1.21-7.0.1.jar                               |XNet                          |xnet                          |1.21-7.0.1          |Manifest: NOSIGNATURE     Crash Report UUID: f3418bdd-df7f-43ec-8c12-efd6cf5ef694     FML: 4.0.31     NeoForge: 21.1.73  
    • Add crash-reports with sites like https://mclo.gs/ Make a test without CustomCursor and/or jeg (justenoughguns)
    • An Ostimien mob from it is invalid at pos 170,66,-143 Check the config (lycanitesmobs-spawning.cfg) and temporarily disable Ostimien
    • Backup the world and make a test without alexscaves
  • Topics

×
×
  • Create New...

Important Information

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