Jump to content

[SOLVED] [1.7] Rotate textures on a block


Jhary

Recommended Posts

Hi!

 

I want to rotate the textures of some block faces based of the orientation of the block. The problem is, I don't want to setup a texture for every possible state, that would be too much :D

 

I know I can achieve this with using an ISimpleBlockRenderingHandler and registering it with my custom block.

 

But I can't really figure out how to properly write the

public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) { }

method in my custom rendering class.

 

More details of what I want to achieve:

The TileEntity can already face in any of the six minecraft directions. Based on its orientation the textures that are not "front" and "back" have to be

rotated properly because of their visuals.

 

I searched a bit here and there but I did not find a source I could work with. Maybe I did not understand something the right way. The problem is, I don't really know

how to setup the renderWorldBlock method. Only thing that I think I am knowing is that I have to use the "uveRotate*" methods of the RenderBlocks class..

 

Regards,

 

Jhary

Link to comment
Share on other sites

That could work. Not really sure what that is though.

 

This question is making me think tessellator. With it you can render a basic cube and depending on the state, start at different points and draw the same texture. Viola, textures rotated. But yeah... That could be inefficient.

We all stuff up sometimes... But I seem to be at the bottom of that pot.

Link to comment
Share on other sites

Hmm ok I can't really wrap my head around this tessellator stuff, but it seems to be exactly what I need.

Sadly I can't find a good example of someone using this with 1.7.

I understand how to first setup the tessellator and that I have to do for each side of a block 4 times the "addVertexWithUV(x, y, z, u, v)" method.

 

But I don't really understand how to setup the parameters.

Lets say my block has the in world coordinates [10 ; 10 ; 10].

 

How would I setup the first four addVertexWithUV calls, lets say for the south side?

 

In this article (http://greyminecraftcoder.blogspot.com.au/2013/08/the-tessellator.html) there are four points  defined as A, B, C and D

 

I would understand this as follows according to the picture in the article :

A: .addVertexWithUV(11, 10, 10, u, v)

B: .addVertexWithUV(11, 11, 10, u, v)

C: .addVertexWithUV(10, 11, 10, u, v)

D: .addVertexWithUV(10, 10, 10, u, v)

 

Would here x, y, z be correct? And if yes, how would I now find out what I have to use for u and v ?

 

Link to comment
Share on other sites

Hi

 

If you are doing the z = 10 positive face (south), then yes that's right, except that in an IBSRH it has already translated the coordinates for you, so you should draw between [0,0,0] and [1,1,1] instead, i.e.

A: .addVertexWithUV(1, 0, 0, u, v)

B: .addVertexWithUV(1, 1, 0, u, v)

etc

regarding u,v: if you have bound the texture yourself and the face is the whole texture, then your u,v coordinates are 0 -> 1 with the v axis pointing in the opposite direction to y, so in your case

A: .addVertexWithUV(1, 0, 0, 1, 1)

B: .addVertexWithUV(1, 1, 0, 1, 0)

etc

 

If each of your faces is an icon (the usual way to do it),  use

icon.getMinU(), icon.getMaxU(), icon.getMinV(), icon.getMaxV()

 

-TGG

Link to comment
Share on other sites

ok I got it now working that it renders correctly. Here is my method so far:

 

@Override
    public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) {

    	Tessellator tessellator = Tessellator.instance;

    	IIcon up = block.getIcon(world, x, y, z, 1);
    	IIcon down = block.getIcon(world, x, y, z, 0);
    	IIcon north = block.getIcon(world, x, y, z, 2);
    	IIcon south = block.getIcon(world, x, y, z, 3);
    	IIcon west = block.getIcon(world, x, y, z, 4);
    	IIcon east = block.getIcon(world, x, y, z, 5);
    	
    	//Down 0
    	tessellator.addVertexWithUV(x+1, y  , z  , (double)down.getMaxU(), (double)down.getMaxV());
    	tessellator.addVertexWithUV(x+1, y  , z+1, (double)down.getMaxU(), (double)down.getMinV());
    	tessellator.addVertexWithUV(x  , y  , z+1, (double)down.getMinU(), (double)down.getMinV());
    	tessellator.addVertexWithUV(x  , y  , z  , (double)down.getMinU(), (double)down.getMaxV());
    	
    	//Up 1
    	tessellator.addVertexWithUV(x+1, y+1, z+1, (double)up.getMaxU(), (double)up.getMaxV());
    	tessellator.addVertexWithUV(x+1, y+1, z  , (double)up.getMaxU(), (double)up.getMinV());
    	tessellator.addVertexWithUV(x  , y+1, z  , (double)up.getMinU(), (double)up.getMinV());
    	tessellator.addVertexWithUV(x  , y+1, z+1, (double)up.getMinU(), (double)up.getMaxV());
    	
    	//North 2
    	tessellator.addVertexWithUV(x  , y  , z  , (double)north.getMaxU(), (double)north.getMaxV());
    	tessellator.addVertexWithUV(x  , y+1, z  , (double)north.getMaxU(), (double)north.getMinV());
    	tessellator.addVertexWithUV(x+1, y+1, z  , (double)north.getMinU(), (double)north.getMinV());
    	tessellator.addVertexWithUV(x+1, y  , z  , (double)north.getMinU(), (double)north.getMaxV());
    	
    	//South 3
    	tessellator.addVertexWithUV(x+1, y  , z+1, (double)south.getMaxU(), (double)south.getMaxV());
    	tessellator.addVertexWithUV(x+1, y+1, z+1, (double)south.getMaxU(), (double)south.getMinV());
    	tessellator.addVertexWithUV(x  , y+1, z+1, (double)south.getMinU(), (double)south.getMinV());
    	tessellator.addVertexWithUV(x  , y  , z+1, (double)south.getMinU(), (double)south.getMaxV());
    	
    	//West 4
    	tessellator.addVertexWithUV(x  , y  , z+1, (double)west.getMaxU(), (double)west.getMaxV());
    	tessellator.addVertexWithUV(x  , y+1, z+1, (double)west.getMaxU(), (double)west.getMinV());
    	tessellator.addVertexWithUV(x  , y+1, z  , (double)west.getMinU(), (double)west.getMinV());
    	tessellator.addVertexWithUV(x  , y  , z  , (double)west.getMinU(), (double)west.getMaxV());
    	
    	//East 5
    	tessellator.addVertexWithUV(x+1, y  , z  , (double)east.getMaxU(), (double)east.getMaxV());
    	tessellator.addVertexWithUV(x+1, y+1, z  , (double)east.getMaxU(), (double)east.getMinV());
    	tessellator.addVertexWithUV(x+1, y+1, z+1, (double)east.getMinU(), (double)east.getMinV());
    	tessellator.addVertexWithUV(x+1, y  , z+1, (double)east.getMinU(), (double)east.getMaxV());
    	       
        return true;
    }

 

It does not rotate the textures at this point. But it seems to work so far, but with one problem. Depending on different angles when moving around the block,

the textures seem to flicker some times between just a black pane and the expected texture... does anyone know why?

 

Next question would be, where in this method do I have to do the rotation with the renderer.uvRotate* thingy?

 

Edit: the "flickering" does occur on all placed blocks at the same time when looking at them from some angles

Link to comment
Share on other sites

Hi

 

The black is probably because you haven't set up the lighting and brightness, so it is using the settings from the last thing it rendered.

 

This is typically done using something like

            tessellator.setBrightness(par1Block.getMixedBrightnessForBlock(this.blockAccess, wx, wy, wz); // wx,wy,wz = world coordinates
            tessellator.setColorOpaque_F(red, green, blue);  // from 0.0 - 1.0

 

If you want to rotate the faces using uvRotate, you need to call RenderBlocks.renderStandardBlock or  RenderBlocks.render after setting the flags.

 

See vanilla RenderBlocks.renderBlockLog for a good example.  The rotation is a bit strange, sometimes it flips the faces.  But if that doesn't bother you then you don't need the Tessellator at all.

 

-TGG

Link to comment
Share on other sites

Ok finally had the time to give it a try and it works like a charm if I just don't use the tessellator and therefore use the RenderBlocks object.

 

Rotation is easily done and for the lighting is no additional setup neccessary.

 

I will post the code here if anyone else needs a reference :)

 

Thanks again!

 

@Override
    public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderer) {

    	IIcon up = block.getIcon(world, x, y, z, 1);
    	IIcon down = block.getIcon(world, x, y, z, 0);
    	IIcon north = block.getIcon(world, x, y, z, 2);
    	IIcon south = block.getIcon(world, x, y, z, 3);
    	IIcon west = block.getIcon(world, x, y, z, 4);
    	IIcon east = block.getIcon(world, x, y, z, 5);
    	
    	renderer.renderFaceXNeg(block, x, y, z, west);
    	renderer.renderFaceXPos(block, x, y, z, east);
    	renderer.renderFaceYNeg(block, x, y, z, down);
    	renderer.renderFaceYPos(block, x, y, z, up);
    	renderer.renderFaceZNeg(block, x, y, z, north);
    	renderer.renderFaceZPos(block, x, y, z, south);
    	
    	TileEntity tile = world.getTileEntity(x, y, z);
    	if(tile instanceof TileEntityMyTile){
    		//wonky rendering incoming
    		switch(((TileEntityMyTile)tile).orientation.ordinal()){
    			case 0: //Bottom
    				renderer.uvRotateNorth=2; //west
    				renderer.uvRotateSouth=1; //east
    				renderer.uvRotateWest=2; //south
    				renderer.uvRotateEast=1; //north
    				break;
    			case 1: //Top
    				renderer.uvRotateNorth=1;
    				renderer.uvRotateSouth=2;
    				renderer.uvRotateWest=1;
    				renderer.uvRotateEast=2;
    				break;				
    			case 2: //North
    				renderer.uvRotateTop = 1;
    				renderer.uvRotateBottom = 2;
    				
    				break;
    			case 3: //South
    				renderer.uvRotateTop=2;
    				renderer.uvRotateBottom=1;
    				renderer.uvRotateNorth=3; 
    				renderer.flipTexture=true; //east
    				break;
    			case 4: //West
    				renderer.uvRotateTop=4;
    				renderer.uvRotateBottom=4;
    				break;
    			case 5: //East
    				renderer.uvRotateTop=3;
    				renderer.uvRotateBottom=3;
    				renderer.flipTexture=true;
    				break;
    		}
    	}
    	
    	boolean flag = renderer.renderStandardBlock(block, x, y, z);
    	//important reset afterwards!
    	renderer.flipTexture=false; 
    	renderer.uvRotateNorth=0; //west
	renderer.uvRotateSouth=0; //east
	renderer.uvRotateWest=0; //south
	renderer.uvRotateEast=0; //north
	renderer.uvRotateTop=0;
	renderer.uvRotateBottom=0;
	return flag;
}

 

Link to comment
Share on other sites

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi, I can't read out of this crash report which mod exactly causes the problem. Can anyone see which one makes trouble?       ---- Minecraft Crash Report ---- // Surprise! Haha. Well, this is awkward. Time: 3/25/23, 11:48 PM Description: Watching Server java.lang.Error: ServerHangWatchdog detected that a single server tick took 60.00 seconds (should be max 0.05)     at java.io.FileInputStream.readBytes(Native Method) ~[?:?] {}     at java.io.FileInputStream.read(FileInputStream.java:276) ~[?:?] {}     at java.io.BufferedInputStream.read1(BufferedInputStream.java:282) ~[?:?] {}     at java.io.BufferedInputStream.read(BufferedInputStream.java:343) ~[?:?] {}     at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:270) ~[?:?] {}     at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:313) ~[?:?] {}     at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:188) ~[?:?] {}     at java.io.InputStreamReader.read(InputStreamReader.java:177) ~[?:?] {}     at java.io.BufferedReader.fill(BufferedReader.java:162) ~[?:?] {}     at java.io.BufferedReader.readLine(BufferedReader.java:329) ~[?:?] {}     at java.io.BufferedReader.readLine(BufferedReader.java:396) ~[?:?] {}     at oshi.util.ExecutingCommand.getProcessOutput(ExecutingCommand.java:154) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.util.ExecutingCommand.runNative(ExecutingCommand.java:119) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.util.ExecutingCommand.runNative(ExecutingCommand.java:95) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.util.ExecutingCommand.runNative(ExecutingCommand.java:78) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.driver.linux.Lshw.queryCpuCapacity(Lshw.java:91) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.hardware.platform.linux.LinuxCentralProcessor.queryProcessorId(LinuxCentralProcessor.java:129) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.hardware.common.AbstractCentralProcessor$$Lambda$981/0x000000080105dc40.get(Unknown Source) ~[?:?] {}     at oshi.util.Memoizer$1.get(Memoizer.java:87) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.hardware.common.AbstractCentralProcessor.getProcessorIdentifier(AbstractCentralProcessor.java:104) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at net.minecraft.SystemReport.m_143539_(SystemReport.java:122) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.m_143569_(SystemReport.java:74) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport$$Lambda$980/0x0000000801052a38.run(Unknown Source) ~[?:?] {}     at net.minecraft.SystemReport.m_143516_(SystemReport.java:81) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.m_143535_(SystemReport.java:74) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.m_143564_(SystemReport.java:51) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport$$Lambda$972/0x0000000801052810.run(Unknown Source) ~[?:?] {}     at net.minecraft.SystemReport.m_143516_(SystemReport.java:81) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.<init>(SystemReport.java:51) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.CrashReport.<init>(CrashReport.java:29) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading,re:mixin}     at net.minecraft.CrashReport.m_127521_(CrashReport.java:205) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading,re:mixin}     at net.minecraft.world.entity.Entity.m_20258_(Entity.java:1593) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:EntityMixin,pl:mixin:APP:createbigcannons.mixins.json:EntityMixin,pl:mixin:APP:blueprint.mixins.json:EntityMixin,pl:mixin:APP:brutalbosses.mixins.json:EntityCapReader,pl:mixin:APP:earthmobsmod.mixins.json:EntityMixin,pl:mixin:APP:canary.mixins.json:ai.nearby_entity_tracking.EntityMixin,pl:mixin:APP:canary.mixins.json:alloc.deep_passengers.EntityMixin,pl:mixin:APP:canary.mixins.json:block.hopper.EntityAccessor,pl:mixin:APP:canary.mixins.json:entity.collisions.movement.EntityMixin,pl:mixin:APP:canary.mixins.json:entity.collisions.suffocation.EntityMixin,pl:mixin:APP:canary.mixins.json:entity.collisions.unpushable_cramming.EntityMixin,pl:mixin:APP:canary.mixins.json:entity.skip_fire_check.EntityMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.entity.EntityAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:entity.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.distance_replace.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.entity_collision.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.shipyard_entities.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.water_in_ships_entity.MixinEntity,pl:mixin:APP:dawncraft.mixin.json:MixinEntity,pl:mixin:APP:create.mixins.json:ContraptionDriverInteractMixin,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_185988_(EntityType.java:472) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType$$Lambda$17369/0x0000000802ea6910.accept(Unknown Source) ~[?:?] {}     at net.minecraft.Util.m_137521_(Util.java:395) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,re:classloading,pl:mixin:APP:blue_skies.mixins.json:UtilMixin,pl:mixin:APP:bettermineshafts.mixins.json:SuppressLogMixin,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_20642_(EntityType.java:469) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_20669_(EntityType.java:552) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_20645_(EntityType.java:508) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType$1.m_147056_(EntityType.java:529) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.world.entity.EntityType$1$$Lambda$17361/0x0000000802ea4548.accept(Unknown Source) ~[?:?] {}     at java.util.Spliterators$IteratorSpliterator.tryAdvance(Spliterators.java:1856) ~[?:?] {}     at net.minecraft.world.entity.EntityType$1.tryAdvance(EntityType.java:528) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at java.util.Spliterator.forEachRemaining(Spliterator.java:332) ~[?:?] {re:mixin}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] {}     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] {}     at net.minecraft.world.level.chunk.storage.EntityStorage.m_156555_(EntityStorage.java:63) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.world.level.chunk.storage.EntityStorage$$Lambda$17320/0x0000000802e94c20.apply(Unknown Source) ~[?:?] {}     at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.util.thread.ProcessorMailbox.m_18759_(ProcessorMailbox.java:91) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18747_(ProcessorMailbox.java:146) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.run(ProcessorMailbox.java:102) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.server.TickTask.run(TickTask.java:18) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:157) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:799) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:164) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:131) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_129961_(MinecraftServer.java:782) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_7245_(MinecraftServer.java:776) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:116) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_130012_(MinecraftServer.java:761) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:689) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_177918_(MinecraftServer.java:261) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$16656/0x0000000802d56720.run(Unknown Source) ~[?:?] {}     at java.lang.Thread.run(Thread.java:833) [?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server Watchdog Stacktrace:     at java.io.FileInputStream.readBytes(Native Method) ~[?:?] {}     at java.io.FileInputStream.read(FileInputStream.java:276) ~[?:?] {}     at java.io.BufferedInputStream.read1(BufferedInputStream.java:282) ~[?:?] {}     at java.io.BufferedInputStream.read(BufferedInputStream.java:343) ~[?:?] {}     at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:270) ~[?:?] {}     at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:313) ~[?:?] {}     at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:188) ~[?:?] {}     at java.io.InputStreamReader.read(InputStreamReader.java:177) ~[?:?] {}     at java.io.BufferedReader.fill(BufferedReader.java:162) ~[?:?] {}     at java.io.BufferedReader.readLine(BufferedReader.java:329) ~[?:?] {}     at java.io.BufferedReader.readLine(BufferedReader.java:396) ~[?:?] {}     at oshi.util.ExecutingCommand.getProcessOutput(ExecutingCommand.java:154) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.util.ExecutingCommand.runNative(ExecutingCommand.java:119) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.util.ExecutingCommand.runNative(ExecutingCommand.java:95) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.util.ExecutingCommand.runNative(ExecutingCommand.java:78) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.driver.linux.Lshw.queryCpuCapacity(Lshw.java:91) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.hardware.platform.linux.LinuxCentralProcessor.queryProcessorId(LinuxCentralProcessor.java:129) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.hardware.common.AbstractCentralProcessor$$Lambda$981/0x000000080105dc40.get(Unknown Source) ~[?:?] {}     at oshi.util.Memoizer$1.get(Memoizer.java:87) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at oshi.hardware.common.AbstractCentralProcessor.getProcessorIdentifier(AbstractCentralProcessor.java:104) ~[oshi-core-5.8.5.jar%2319!/:5.8.5] {}     at net.minecraft.SystemReport.m_143539_(SystemReport.java:122) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.m_143569_(SystemReport.java:74) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport$$Lambda$980/0x0000000801052a38.run(Unknown Source) ~[?:?] {}     at net.minecraft.SystemReport.m_143516_(SystemReport.java:81) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.m_143535_(SystemReport.java:74) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.m_143564_(SystemReport.java:51) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport$$Lambda$972/0x0000000801052810.run(Unknown Source) ~[?:?] {}     at net.minecraft.SystemReport.m_143516_(SystemReport.java:81) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.SystemReport.<init>(SystemReport.java:51) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.CrashReport.<init>(CrashReport.java:29) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading,re:mixin}     at net.minecraft.CrashReport.m_127521_(CrashReport.java:205) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading,re:mixin}     at net.minecraft.world.entity.Entity.m_20258_(Entity.java:1593) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:structure_gel.mixins.json:EntityMixin,pl:mixin:APP:createbigcannons.mixins.json:EntityMixin,pl:mixin:APP:blueprint.mixins.json:EntityMixin,pl:mixin:APP:brutalbosses.mixins.json:EntityCapReader,pl:mixin:APP:earthmobsmod.mixins.json:EntityMixin,pl:mixin:APP:canary.mixins.json:ai.nearby_entity_tracking.EntityMixin,pl:mixin:APP:canary.mixins.json:alloc.deep_passengers.EntityMixin,pl:mixin:APP:canary.mixins.json:block.hopper.EntityAccessor,pl:mixin:APP:canary.mixins.json:entity.collisions.movement.EntityMixin,pl:mixin:APP:canary.mixins.json:entity.collisions.suffocation.EntityMixin,pl:mixin:APP:canary.mixins.json:entity.collisions.unpushable_cramming.EntityMixin,pl:mixin:APP:canary.mixins.json:entity.skip_fire_check.EntityMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.entity.EntityAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:entity.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.distance_replace.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.entity_collision.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.shipyard_entities.MixinEntity,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.water_in_ships_entity.MixinEntity,pl:mixin:APP:dawncraft.mixin.json:MixinEntity,pl:mixin:APP:create.mixins.json:ContraptionDriverInteractMixin,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_185988_(EntityType.java:472) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType$$Lambda$17369/0x0000000802ea6910.accept(Unknown Source) ~[?:?] {}     at net.minecraft.Util.m_137521_(Util.java:395) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,re:classloading,pl:mixin:APP:blue_skies.mixins.json:UtilMixin,pl:mixin:APP:bettermineshafts.mixins.json:SuppressLogMixin,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_20642_(EntityType.java:469) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_20669_(EntityType.java:552) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType.m_20645_(EntityType.java:508) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury-common.mixins.json:inject.MixinEntityType,pl:mixin:A}     at net.minecraft.world.entity.EntityType$1.m_147056_(EntityType.java:529) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.world.entity.EntityType$1$$Lambda$17361/0x0000000802ea4548.accept(Unknown Source) ~[?:?] {}     at java.util.Spliterators$IteratorSpliterator.tryAdvance(Spliterators.java:1856) ~[?:?] {}     at net.minecraft.world.entity.EntityType$1.tryAdvance(EntityType.java:528) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at java.util.Spliterator.forEachRemaining(Spliterator.java:332) ~[?:?] {re:mixin}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] {}     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] {}     at net.minecraft.world.level.chunk.storage.EntityStorage.m_156555_(EntityStorage.java:63) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.world.level.chunk.storage.EntityStorage$$Lambda$17320/0x0000000802e94c20.apply(Unknown Source) ~[?:?] {}     at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.util.thread.ProcessorMailbox.m_18759_(ProcessorMailbox.java:91) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18747_(ProcessorMailbox.java:146) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.run(ProcessorMailbox.java:102) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.server.TickTask.run(TickTask.java:18) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:157) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:799) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:164) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:131) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_129961_(MinecraftServer.java:782) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_7245_(MinecraftServer.java:776) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:116) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_130012_(MinecraftServer.java:761) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:689) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_177918_(MinecraftServer.java:261) ~[server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:valkyrienskies-common.mixins.json:server.MixinMinecraftServer,pl:mixin:A} -- Thread Dump -- Details:     Threads: "Reference Handler" daemon prio=10 Id=2 RUNNABLE     at java.base@17.0.1/java.lang.ref.Reference.waitForReferencePendingList(Native Method)     at java.base@17.0.1/java.lang.ref.Reference.processPendingReferences(Reference.java:253)     at java.base@17.0.1/java.lang.ref.Reference$ReferenceHandler.run(Reference.java:215) "Finalizer" daemon prio=8 Id=3 WAITING on java.lang.ref.ReferenceQueue$Lock@314fd439     at java.base@17.0.1/java.lang.Object.wait(Native Method)     -  waiting on java.lang.ref.ReferenceQueue$Lock@314fd439     at java.base@17.0.1/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)     at java.base@17.0.1/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176)     at java.base@17.0.1/java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:172) "Signal Dispatcher" daemon prio=9 Id=4 RUNNABLE "Common-Cleaner" daemon prio=8 Id=11 TIMED_WAITING on java.lang.ref.ReferenceQueue$Lock@3f883c60     at java.base@17.0.1/java.lang.Object.wait(Native Method)     -  waiting on java.lang.ref.ReferenceQueue$Lock@3f883c60     at java.base@17.0.1/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)     at java.base@17.0.1/jdk.internal.ref.CleanerImpl.run(CleanerImpl.java:140)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833)     at java.base@17.0.1/jdk.internal.misc.InnocuousThread.run(InnocuousThread.java:162) "Notification Thread" daemon prio=9 Id=12 RUNNABLE "Thread-0" daemon prio=5 Id=20 TIMED_WAITING     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:376)     at MC-BOOTSTRAP/com.electronwill.nightconfig.core@3.6.4/com.electronwill.nightconfig.core.file.FileWatcher$WatcherThread.run(FileWatcher.java:190) "FileSystemWatchService" daemon prio=5 Id=21 RUNNABLE (in native)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService.poll(Native Method)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService$Poller.run(LinuxWatchService.java:314)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Timer hack thread" daemon prio=5 Id=26 TIMED_WAITING     at java.base@17.0.1/java.lang.Thread.sleep(Native Method)     at TRANSFORMER/minecraft@1.18.2/net.minecraft.Util$8.run(Util.java:628) "pool-3-thread-1" prio=5 Id=31 WAITING on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@3bb7bf49     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@3bb7bf49     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)     at java.base@17.0.1/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3463)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3434)     at java.base@17.0.1/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1623)     at java.base@17.0.1/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)     at java.base@17.0.1/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)     ... "pool-3-thread-2" prio=5 Id=32 TIMED_WAITING on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@3bb7bf49     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@3bb7bf49     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)     at java.base@17.0.1/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1672)     at java.base@17.0.1/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)     at java.base@17.0.1/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)     ... "FileSystemWatchService" daemon prio=5 Id=39 RUNNABLE (in native)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService.poll(Native Method)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService$Poller.run(LinuxWatchService.java:314)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "FileSystemWatchService" daemon prio=5 Id=40 RUNNABLE (in native)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService.poll(Native Method)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService$Poller.run(LinuxWatchService.java:314)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Worker-Main-4" daemon prio=5 Id=51 WAITING on java.util.concurrent.ForkJoinPool@7eb5365b     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.ForkJoinPool@7eb5365b     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)     at java.base@17.0.1/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) "Worker-Main-5" daemon prio=5 Id=52 WAITING on java.util.concurrent.ForkJoinPool@7eb5365b     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.ForkJoinPool@7eb5365b     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1724)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)     at java.base@17.0.1/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) "Worker-Main-6" daemon prio=5 Id=53 TIMED_WAITING on java.util.concurrent.ForkJoinPool@7eb5365b     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.ForkJoinPool@7eb5365b     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:410)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1726)     at java.base@17.0.1/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1623)     at java.base@17.0.1/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) "Server thread" prio=5 Id=54 RUNNABLE     at java.base@17.0.1/java.io.FileInputStream.readBytes(Native Method)     at java.base@17.0.1/java.io.FileInputStream.read(FileInputStream.java:276)     at java.base@17.0.1/java.io.BufferedInputStream.read1(BufferedInputStream.java:282)     at java.base@17.0.1/java.io.BufferedInputStream.read(BufferedInputStream.java:343)     -  locked java.lang.ProcessImpl$ProcessPipeInputStream@3194cba8     at java.base@17.0.1/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:270)     at java.base@17.0.1/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:313)     at java.base@17.0.1/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:188)     -  locked java.io.InputStreamReader@4f818ac6     at java.base@17.0.1/java.io.InputStreamReader.read(InputStreamReader.java:177)     ... "DestroyJavaVM" prio=5 Id=56 RUNNABLE "Server console handler" daemon prio=5 Id=57 RUNNABLE     at java.base@17.0.1/java.io.FileInputStream.read0(Native Method)     at java.base@17.0.1/java.io.FileInputStream.read(FileInputStream.java:228)     at MC-BOOTSTRAP/jline.terminal@3.12.1/org.jline.terminal.impl.AbstractPty$PtyInputStream.read(AbstractPty.java:73)     at MC-BOOTSTRAP/jline.terminal@3.12.1/org.jline.utils.NonBlockingInputStream.read(NonBlockingInputStream.java:62)     at MC-BOOTSTRAP/jline.terminal@3.12.1/org.jline.utils.NonBlocking$NonBlockingInputStreamReader.read(NonBlocking.java:168)     at MC-BOOTSTRAP/jline.terminal@3.12.1/org.jline.utils.NonBlockingReader.read(NonBlockingReader.java:57)     at MC-BOOTSTRAP/jline.reader@3.12.1/org.jline.keymap.BindingReader.readCharacter(BindingReader.java:133)     at MC-BOOTSTRAP/jline.reader@3.12.1/org.jline.keymap.BindingReader.readBinding(BindingReader.java:110)     ... "Netty Epoll Server IO #0" daemon prio=5 Id=59 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "FileSystemWatchService" daemon prio=5 Id=60 RUNNABLE (in native)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService.poll(Native Method)     at java.base@17.0.1/sun.nio.fs.LinuxWatchService$Poller.run(LinuxWatchService.java:314)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Physics thread" prio=8 Id=61 TIMED_WAITING     at java.base@17.0.1/java.lang.Thread.sleep(Native Method)     at TRANSFORMER/valkyrienskies@2.1.0-beta.10/org.valkyrienskies.core.impl.pipelines.VSGamePipelineStage.pushPhysicsFrame(VSGamePipelineStage.kt:45)     at TRANSFORMER/valkyrienskies@2.1.0-beta.10/org.valkyrienskies.core.impl.pipelines.VSPipelineImpl.tickPhysics(VSPipelineImpl.kt:110)     at TRANSFORMER/valkyrienskies@2.1.0-beta.10/org.valkyrienskies.core.impl.pipelines.VSPhysicsPipelineBackgroundTask.run(VSPhysicsPipelineBackgroundTask.kt:75)     at TRANSFORMER/valkyrienskies@2.1.0-beta.10/org.valkyrienskies.core.impl.pipelines.VSPipelineImpl$physicsThread$1.invoke(VSPipelineImpl.kt:65)     at TRANSFORMER/valkyrienskies@2.1.0-beta.10/org.valkyrienskies.core.impl.pipelines.VSPipelineImpl$physicsThread$1.invoke(VSPipelineImpl.kt:64)     at LAYER PLUGIN/kotlinforforge.obf@3.4.0-obf/kotlin.concurrent.ThreadsKt$thread$thread$1.run(Thread.kt:30) "IO-Worker-7" prio=5 Id=62 TIMED_WAITING on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1061)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Server Watchdog" daemon prio=5 Id=67 RUNNABLE     at java.management@17.0.1/sun.management.ThreadImpl.dumpThreads0(Native Method)     at java.management@17.0.1/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:521)     at java.management@17.0.1/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:509)     at TRANSFORMER/minecraft@1.18.2/net.minecraft.server.dedicated.ServerWatchdog.run(ServerWatchdog.java:43)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Java2D Disposer" daemon prio=10 Id=68 WAITING on java.lang.ref.ReferenceQueue$Lock@94498e4     at java.base@17.0.1/java.lang.Object.wait(Native Method)     -  waiting on java.lang.ref.ReferenceQueue$Lock@94498e4     at java.base@17.0.1/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)     at java.base@17.0.1/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176)     at java.desktop@17.0.1/sun.java2d.Disposer.run(Disposer.java:145)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Netty Epoll Server IO #1" daemon prio=5 Id=70 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Netty Epoll Server IO #2" daemon prio=5 Id=74 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Netty Epoll Server IO #3" daemon prio=5 Id=78 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Netty Epoll Server IO #4" daemon prio=5 Id=79 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:192)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:185)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:290)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:347)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "IO-Worker-12" prio=5 Id=80 TIMED_WAITING on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1061)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Netty Epoll Server IO #5" daemon prio=5 Id=81 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "Netty Epoll Server IO #6" daemon prio=5 Id=82 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "IO-Worker-13" prio=5 Id=86 TIMED_WAITING on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1061)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "IO-Worker-14" prio=5 Id=87 TIMED_WAITING on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/jdk.internal.misc.Unsafe.park(Native Method)     -  waiting on java.util.concurrent.SynchronousQueue$TransferStack@1e9ac914     at java.base@17.0.1/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)     at java.base@17.0.1/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1061)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) "process reaper" daemon prio=10 Id=88 RUNNABLE     at java.base@17.0.1/java.lang.ProcessHandleImpl.waitForProcessExit0(Native Method)     at java.base@17.0.1/java.lang.ProcessHandleImpl$1.run(ProcessHandleImpl.java:147)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)     at java.base@17.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833)     Number of locked synchronizers = 1     - java.util.concurrent.ThreadPoolExecutor$Worker@23b0bb72 "Netty Epoll Server IO #7" daemon prio=5 Id=89 RUNNABLE (in native)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait0(Native Method)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.Native.epollWait(Native.java:176)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:281)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:351)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)     at MC-BOOTSTRAP/io.netty.all@4.1.68.Final/io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)     at java.base@17.0.1/java.lang.Thread.run(Thread.java:833) Stacktrace:     at net.minecraft.server.dedicated.ServerWatchdog.run(ServerWatchdog.java:58) [server-1.18.2-20220404.173914-srg.jar%23122!/:?] {re:classloading}     at java.lang.Thread.run(Thread.java:833) [?:?] {re:mixin} -- Performance stats -- Details:     Random tick rate: 6     Level stats: ResourceKey[minecraft:dimension / minecraft:overworld]: players: 3, entities: 909,899,3044,3825,3824,0,0 [minecraft:item:581,minecraft:rabbit:42,alexsmobs:catfish:23,minecraft:bat:23,bloodandmadness:huntsman_axe:20], block_entities: 1186 [create:simple_kinetic:224,create:belt:215,minecraft:mob_spawner:147,create:encased_shaft:100,create:gearbox:68], block_ticks: 1475, fluid_ticks: 2924, chunk_source: Chunks W: 11294 E: 909,899,3044,3825,3824,0,0, ResourceKey[minecraft:dimension / simple_mobs:distant_land]: players: 0, entities: 0,0,0,0,0,0,0 [], block_entities: 0 [], block_ticks: 0, fluid_ticks: 0, chunk_source: Chunks W: 0 E: 0,0,0,0,0,0,0, ResourceKey[minecraft:dimension / blue_skies:everdawn]: players: 0, entities: 0,0,0,0,0,0,0 [], block_entities: 0 [], block_ticks: 0, fluid_ticks: 0, chunk_source: Chunks W: 0 E: 0,0,0,0,0,0,0, ResourceKey[minecraft:dimension / blue_skies:everbright]: players: 0, entities: 0,0,0,0,0,0,0 [], block_entities: 0 [], block_ticks: 0, fluid_ticks: 0, chunk_source: Chunks W: 0 E: 0,0,0,0,0,0,0, ResourceKey[minecraft:dimension / minecraft:the_nether]: players: 0, entities: 0,0,0,0,0,0,0 [], block_entities: 0 [], block_ticks: 0, fluid_ticks: 0, chunk_source: Chunks W: 0 E: 0,0,0,0,0,0,0, ResourceKey[minecraft:dimension / minecraft:the_end]: players: 0, entities: 0,0,0,0,0,0,0 [], block_entities: 0 [], block_ticks: 0, fluid_ticks: 0, chunk_source: Chunks W: 0 E: 0,0,0,0,0,0,0 -- System Details -- Details:     Minecraft Version: 1.18.2     Minecraft Version ID: 1.18.2     Operating System: Linux (amd64) version 5.19.0-35-generic     Java Version: 17.0.1, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation     Memory: 4293603328 bytes (4094 MiB) / 8589934592 bytes (8192 MiB) up to 17179869184 bytes (16384 MiB)     CPUs: 4     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 3 1200 Quad-Core Processor     Identifier: AuthenticAMD Family 23 Model 1 Stepping 1     Microarchitecture: Zen     Frequency (GHz): 3.10     Number of physical packages: 1     Number of physical CPUs: 4     Number of logical CPUs: 4     Graphics card #0 name: GK106 [GeForce GTX 650 Ti]     Graphics card #0 vendor: NVIDIA Corporation (0x10de)     Graphics card #0 VRAM (MB): 160.00     Graphics card #0 deviceId: 0x11c6     Graphics card #0 versionInfo: unknown     Virtual memory max (MB): 18054.13     Virtual memory used (MB): 12827.39     Swap memory total (MB): 2048.00     Swap memory used (MB): 1.01     JVM Flags: 2 total; -Xmx16G -Xms8G     Server Running: true     Player Count: 3 / 20; [ServerPlayer['amigo15'/136, l='ServerLevel[New World]', x=-1195.69, y=65.76, z=-884.58], ServerPlayer['makemelaugh'/578, l='ServerLevel[New World]', x=1454.64, y=-4.00, z=-248.09], ServerPlayer['Junick8884'/6963, l='ServerLevel[New World]', x=-1192.40, y=67.78, z=-869.01]]     Data Packs: vanilla, mod:forge, mod:flywheel (incompatible), mod:create, mod:architectury (incompatible), mod:createchunkloading (incompatible), mod:travelersbackpack (incompatible), mod:jei (incompatible), mod:createaddition (incompatible), mod:curiouselytra (incompatible), mod:caelus (incompatible), mod:curios (incompatible), mod:mcwtrpdoors, mod:supermartijn642configlib (incompatible), mod:supermartijn642corelib, mod:betterdungeons, mod:blue_skies (incompatible), mod:betterwitchhuts, mod:betteroceanmonuments, mod:strawgolem (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:yungsapi, mod:paraglider, mod:cloth_config (incompatible), mod:pfm (incompatible), mod:structure_gel, mod:castle_in_the_sky (incompatible), mod:mcwbridges, mod:morevillagers (incompatible), mod:bloodandmadness (incompatible), mod:yungsbridges, mod:dungeons_enhanced, mod:goblinsanddungeons (incompatible), mod:patchouli (incompatible), mod:yungsextras, mod:bettervillage, mod:unvotedandshelved (incompatible), mod:betterstrongholds, mod:atlaslib (incompatible), mod:krypton (incompatible), mod:bettermineshafts, mod:mowziesmobs (incompatible), mod:geckolib3 (incompatible), mod:createbigcannons, mod:humancompanions (incompatible), mod:reputation (incompatible), mod:simple_mobs, mod:shrines, mod:libraryferret, mod:kobolds, mod:monsterplus (incompatible), mod:epicfight, mod:comforts (incompatible), mod:decorative_blocks, mod:magistuarmory (incompatible), mod:starlight (incompatible), mod:betterdeserttemples, mod:orcz, mod:terralith, mod:blueprint (incompatible), mod:savage_and_ravage (incompatible), mod:crafttweaker (incompatible), mod:ars_nouveau, mod:darkersouls (incompatible), mod:smoothchunk (incompatible), mod:betterfpsdist (incompatible), mod:alloyed (incompatible), mod:createdeco (incompatible), mod:brutalbosses (incompatible), mod:create_sa, mod:earthmobsmod, mod:canary (incompatible), mod:ferritecore (incompatible), mod:bettergolem, mod:valkyrienskies (incompatible), mod:vs_eureka (incompatible), mod:valhelsia_core (incompatible), mod:valhelsia_structures (incompatible), mod:dawncraft (incompatible), file/nbt_copy_dp (incompatible), mod:balm (incompatible), mod:waystones (incompatible), mod:cloudstorage     World Generation: Experimental     Is Modded: Definitely; Server brand changed to 'forge'     Type: Dedicated Server (map_server.txt)     ModLauncher: 9.1.3+9.1.3+main.9b69c82a     ModLauncher launch target: forgeserver     ModLauncher naming: srg     ModLauncher services:          mixin PLUGINSERVICE          eventbus PLUGINSERVICE          slf4jfixer PLUGINSERVICE          object_holder_definalize PLUGINSERVICE          runtime_enum_extender PLUGINSERVICE          capability_token_subclass PLUGINSERVICE          accesstransformer PLUGINSERVICE          runtimedistcleaner PLUGINSERVICE          mixin TRANSFORMATIONSERVICE          fml TRANSFORMATIONSERVICE     FML Language Providers:         minecraft@1.0         lowcodefml@null         javafml@null         kotlinforforge@3.4.0     Mod List:         YungsBetterDungeons-1.18.2-Forge-2.1.0.jar        |YUNG's Better Dungeons        |betterdungeons                |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         blue_skies-1.18.2-1.3.12.jar                      |Blue Skies                    |blue_skies                    |1.3.12              |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.0.9-mc1.18.jar         |SuperMartijn642's Config Lib  |supermartijn642configlib      |1.0.9               |DONE      |Manifest: NOSIGNATURE         YungsBetterWitchHuts-1.18.2-Forge-1.0.1.jar       |YUNG's Better Witch Huts      |betterwitchhuts               |1.18.2-Forge-1.0.1  |DONE      |Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.18.2-Forge-1.0.3.jar  |YUNG's Better Ocean Monuments |betteroceanmonuments          |1.18.2-Forge-1.0.3  |DONE      |Manifest: NOSIGNATURE         Strawgolem-forge-1.18.2-2.0.0-beta.5.jar          |Straw Golem                   |strawgolem                    |2.0.0-beta.5        |DONE      |Manifest: NOSIGNATURE         citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.18.6.jar                              |Alex's Mobs                   |alexsmobs                     |1.18.6              |DONE      |Manifest: NOSIGNATURE         YungsApi-1.18.2-Forge-2.2.9.jar                   |YUNG's API                    |yungsapi                      |1.18.2-Forge-2.2.9  |DONE      |Manifest: NOSIGNATURE         balm-3.2.5.jar                                    |Balm                          |balm                          |3.2.5               |DONE      |Manifest: NOSIGNATURE         Paraglider-1.18.2-1.6.0.5.jar                     |Paraglider                    |paraglider                    |1.6.0.5             |DONE      |Manifest: NOSIGNATURE         cloth-config-6.4.90-forge.jar                     |Cloth Config v4 API           |cloth_config                  |6.4.90              |DONE      |Manifest: NOSIGNATURE         paladin-furniture-mod-1.1.1-forge-mc1.18.2.jar    |Paladin's Furniture           |pfm                           |1.1.1               |DONE      |Manifest: NOSIGNATURE         structure_gel-1.18.2-2.4.7.jar                    |Structure Gel API             |structure_gel                 |2.4.7               |DONE      |Manifest: NOSIGNATURE         castle_in_the_sky-1.18.2-0.4.1.jar                |Castle in the sky             |castle_in_the_sky             |1.18.2              |DONE      |Manifest: NOSIGNATURE         mcw-bridges-2.0.6-mc1.18.2forge.jar               |Macaw's Bridges               |mcwbridges                    |2.0.6               |DONE      |Manifest: NOSIGNATURE         morevillagers-FORGE-1.18.2-3.2.0.jar              |More Villagers                |morevillagers                 |3.2.0               |DONE      |Manifest: NOSIGNATURE         BloodAndMadness-Forge1.18.2-v2.0.2.jar            |Blood And Madness             |bloodandmadness               |2.0                 |DONE      |Manifest: NOSIGNATURE         mcw-trapdoors-1.0.9-mc1.18.2forge.jar             |Macaw's Trapdoors             |mcwtrpdoors                   |1.0.9               |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.0.18-forge-mc1.18.jar    |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.0.18              |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.18.2-Forge-2.1.0.jar               |YUNG's Bridges                |yungsbridges                  |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         dungeons_enhanced-1.18.2-3.2.1.jar                |Dungeons Enhanced             |dungeons_enhanced             |3.2.1               |DONE      |Manifest: NOSIGNATURE         cloudstorage-1.1.0-1.18.2.jar                     |Cloud Storage                 |cloudstorage                  |1.1.0               |DONE      |Manifest: NOSIGNATURE         Goblins_Dungeons_1.0.8.jar                        |Goblins & Dungeons            |goblinsanddungeons            |1.0.8               |DONE      |Manifest: NOSIGNATURE         curios-forge-1.18.2-5.0.7.1.jar                   |Curios API                    |curios                        |1.18.2-5.0.7.1      |DONE      |Manifest: NOSIGNATURE         Patchouli-1.18.2-70.jar                           |Patchouli                     |patchouli                     |1.18.2-70           |DONE      |Manifest: NOSIGNATURE         YungsExtras-1.18.2-Forge-2.1.0.jar                |YUNG's Extras                 |yungsextras                   |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         BetterVillage-Forge-1.18.2-1.0.2.jar              |Better Village                |bettervillage                 |1                   |DONE      |Manifest: NOSIGNATURE         unvotedandshelved-1.18.2-2.0.6-forge.jar          |Unvoted and Shelved           |unvotedandshelved             |1.18.2-2.0.6-forge  |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar     |YUNG's Better Strongholds     |betterstrongholds             |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE         Atlas-Lib-1.18.2-1.1.7a.jar                       |Atlas Lib                     |atlaslib                      |1.1.7a              |DONE      |Manifest: NOSIGNATURE         architectury-4.11.89-forge.jar                    |Architectury                  |architectury                  |4.11.89             |DONE      |Manifest: NOSIGNATURE         curiouselytra-forge-1.18.1-5.0.1.0.jar            |Curious Elytra                |curiouselytra                 |1.18.1-5.0.1.0      |DONE      |Manifest: NOSIGNATURE         krypton-0.1.10-SNAPSHOT.jar                       |Krypton Reforged              |krypton                       |0.1.10-SNAPSHOT     |DONE      |Manifest: NOSIGNATURE         YungsBetterMineshafts-1.18.2-Forge-2.2.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.2    |DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.5.32.jar                            |Mowzie's Mobs                 |mowziesmobs                   |1.5.32              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.18-3.0.56.jar                    |GeckoLib                      |geckolib3                     |3.0.56              |DONE      |Manifest: NOSIGNATURE         createbigcannons-1.18.2-beta-0.5.jar              |Create Big Cannons            |createbigcannons              |1.18.2-beta-0.5     |DONE      |Manifest: NOSIGNATURE         humancompanions-1.18.2-1.7.3.jar                  |Human Companions              |humancompanions               |1.18.2-1.7.3        |DONE      |Manifest: NOSIGNATURE         Reputation-1.18-0.9.9.jar                         |Reputation                    |reputation                    |0.9.9               |DONE      |Manifest: NOSIGNATURE         dawncraft_mobs-1.18-0.9.1b_beta.jar               |Simple Mobs                   |simple_mobs                   |0.9.1               |DONE      |Manifest: NOSIGNATURE         Shrines-1.18.2-4.1.0.jar                          |Shrines                       |shrines                       |1.18.2-4.1.0        |DONE      |Manifest: NOSIGNATURE         jei-1.18.2-9.7.1.255.jar                          |Just Enough Items             |jei                           |9.7.1.255           |DONE      |Manifest: NOSIGNATURE         libraryferret-forge-1.18.2-3.0.0.jar              |Library ferret                |libraryferret                 |3.0.0               |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.18.1-3.0.0.2.jar                   |Caelus API                    |caelus                        |1.18.1-3.0.0.2      |DONE      |Manifest: NOSIGNATURE         Kobolds-2.1.2.jar                                 |Kobolds                       |kobolds                       |2.1.2               |DONE      |Manifest: NOSIGNATURE         createchunkloading-1.2.1-forge.jar                |Create Chunkloading           |createchunkloading            |1.2.1               |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.18.2-10.2.0.jar                 |Waystones                     |waystones                     |10.2.0              |DONE      |Manifest: NOSIGNATURE         MonsterPlus-Forge1.18.2-v1.1.5.jar                |Monster Plus                  |monsterplus                   |1.0                 |DONE      |Manifest: NOSIGNATURE         EpicFight-18.3.7.jar                              |Epic Fight                    |epicfight                     |18.3.7              |DONE      |Manifest: NOSIGNATURE         comforts-forge-1.18.2-5.0.0.5.jar                 |Comforts                      |comforts                      |1.18.2-5.0.0.5      |DONE      |Manifest: NOSIGNATURE         TravelersBackpack-1.18.2-7.1.26.jar               |Traveler's Backpack           |travelersbackpack             |7.1.26              |DONE      |Manifest: NOSIGNATURE         Decorative+Blocks-forge-1.18.2-2.1.2.jar          |Decorative Blocks             |decorative_blocks             |2.1.2               |DONE      |Manifest: NOSIGNATURE         [1.18.2-forge]-Epic-Knights-7.11.jar              |Epic Knights Mod              |magistuarmory                 |7.11                |DONE      |Manifest: NOSIGNATURE         starlight-1.0.2+forge.546ae87.jar                 |Starlight                     |starlight                     |1.0.2+forge.83663de |DONE      |Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.18.2-Forge-1.3.1.jar   |YUNG's Better Desert Temples  |betterdeserttemples           |1.18.2-Forge-1.3.1  |DONE      |Manifest: NOSIGNATURE         Orcz InteJason V5 1.18.2.jar                      |Orcz                          |orcz                          |0.74                |DONE      |Manifest: NOSIGNATURE         Terralith_v2.2.3.jar                              |Terralith                     |terralith                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE         blueprint-1.18.2-5.5.0.jar                        |Blueprint                     |blueprint                     |5.5.0               |DONE      |Manifest: NOSIGNATURE         savage_and_ravage-1.18.2-4.0.1.jar                |Savage & Ravage               |savage_and_ravage             |4.0.1               |DONE      |Manifest: NOSIGNATURE         CraftTweaker-forge-1.18.2-9.1.204.jar             |CraftTweaker                  |crafttweaker                  |9.1.204             |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.18.2-2.8.0.jar                      |Ars Nouveau                   |ars_nouveau                   |2.8.0               |DONE      |Manifest: NOSIGNATURE         forge-1.18.2-40.2.1-universal.jar                 |Forge                         |forge                         |40.2.1              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         DarkerSouls1.18.2Forgev1.3.1.jar                  |Darker Souls                  |darkersouls                   |1.0                 |DONE      |Manifest: NOSIGNATURE         server-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |Manifest: NOSIGNATURE         smoothchunk-1.18.2-1.9.jar                        |Smoothchunk mod               |smoothchunk                   |1.18.2-1.9          |DONE      |Manifest: NOSIGNATURE         betterfpsdist-1.18.2-1.5.jar                      |betterfpsdist mod             |betterfpsdist                 |1.18.2-1.5          |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.18.2-0.6.8.a.jar                 |Flywheel                      |flywheel                      |0.6.8.a             |DONE      |Manifest: NOSIGNATURE         alloyed-1.18.2-v1.4e.jar                          |Create: Alloyed               |alloyed                       |1.18.2              |DONE      |Manifest: NOSIGNATURE         create-1.18.2-0.5.0.i.jar                         |Create                        |create                        |0.5.0.i             |DONE      |Manifest: NOSIGNATURE         createdeco-1.2.12-1.18.2.jar                      |Create Deco                   |createdeco                    |1.2.12-1.18.2       |DONE      |Manifest: NOSIGNATURE         brutalbosses-1.18.2-5.6.jar                       |brutalbosses mod              |brutalbosses                  |1.18.2-5.6          |DONE      |Manifest: NOSIGNATURE         create-stuff-additions1.18.2_v2.0.2b.jar          |Create Stuff & Additions      |create_sa                     |2.0.2               |DONE      |Manifest: NOSIGNATURE         EarthMobs-1.18.2-1.4.0.jar                        |Earth Mobs Mod                |earthmobsmod                  |1.18.2-1.4.0        |DONE      |Manifest: NOSIGNATURE         canary-mc1.18.2-0.1.6.jar                         |Canary                        |canary                        |0.1.6               |DONE      |Manifest: NOSIGNATURE         ferritecore-4.2.2-forge.jar                       |Ferrite Core                  |ferritecore                   |4.2.2               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         bettergolem-1.18.2-1.1.0.jar                      |Better Golem                  |bettergolem                   |1.18.2-1.1.0        |DONE      |Manifest: NOSIGNATURE         valkyrienskies-118-2.1.0-beta.10.jar              |Valkyrien Skies 2             |valkyrienskies                |2.1.0-beta.10       |DONE      |Manifest: NOSIGNATURE         eureka-1.1.0-beta.8.jar                           |VS Eureka Mod                 |vs_eureka                     |1.1.0-beta.8        |DONE      |Manifest: NOSIGNATURE         valhelsia_core-forge-1.18.2-0.4.0.jar             |Valhelsia Core                |valhelsia_core                |1.18.2-0.4.0        |DONE      |Manifest: NOSIGNATURE         valhelsia_structures-forge-1.18.2-0.1.0.jar       |Valhelsia Structures          |valhelsia_structures          |1.18.2-0.1.0        |DONE      |Manifest: NOSIGNATURE         DawnCraft-Tweaks-1.18.2-1.2.1e.jar                |DawnCraft-Tweaks              |dawncraft                     |1.18.2-1.2.1e       |DONE      |Manifest: NOSIGNATURE         createaddition-1.18.2-20230315b.jar               |Create Crafts & Additions     |createaddition                |1.18.2-20230315b    |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: e9bebfb9-fb28-423d-ae7d-12aa0ad78633     FML: 40.2     Forge: net.minecraftforge:40.2.1
    • here is the log file Latest Log
    • https://spark.lucko.me/wot3z5aDt0 does this help, it was only about 6 minutes but it caught where it said cant keep up  
    • there is spark installed, the problem is the crashing, every time the server crashes the spark commands stop working until its back up again  
  • Topics

×
×
  • Create New...

Important Information

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