Jump to content

issue with detecting blocks


dontrell94

Recommended Posts

I'm going to say this:

 

Any person who can help me program this correctly will have their name on the credits of this mod for coding.

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

It works to a point..... just that it makes the blocks like they are invisible non solids, but when you walk into them its like the player has a continuous, sand fall in place disorder..... :o

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

im trying to code it for a 3X3X4 square this block being on the top row.

 

essentially 3 blocks below this plus the row its on

 

You have < 2 right now.  Which means it will do 0 and 1, but not 2.

 

Also, it's not centered on your pit trap.

 

for(i=-1;i<=1;i++) {
  for(j=-1;j<=1;j++) {
    for(k=0;k<=3;k++ {

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

 

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

 

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

Link to comment
Share on other sites

where does that go?

 

...in place of your current loop..?

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

 

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

 

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

Link to comment
Share on other sites

how do you handle the x, y, and z variables?

 

seriously? :|

 

x+i

y-j

z+k

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

 

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

 

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

Link to comment
Share on other sites

public class PitfallHandler

    public World world; // the world you are using

    public int i, j, k; // X, Y, and Z axis variables

    public int x, y, z;

 

i had to add the last line for it to not error

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

This is when I facepalm myself to death...

 

Can you tell we and/or show screenshots of the "null" blocks (blocks that are invisible and glitch the game. My name for 'em :D)?a

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

Upon further investigation, my code only errors when I take out the

 

this.world = world;

 

line......

 

Anybody have ideas?

 

 

package huntingTraps.Resources;

 

import net.minecraft.world.World;

 

public class PitfallHandler

    public World world; // the world you are using

    public int i, j, k; // X, Y, and Z axis variables

    private int x, y, z;

   

    public PitfallHandler(World world, int x, int y, int z)

    {

        this.world = world; // the world

        this.x = i; // X axis

        this.y = j; // Y axis

        this.z = k; // Z axis

    }

 

    public void generatePitfall()

    {

        // this nested for loop will make a 'block' of air to the dimensions specified in numOfBlocksOn***

        for(i=-1;i<=1;i++)

        {

            for(j=-1;j<=1;j++)

            {

              for(k=0;k<=3;k++)

                      {

                        //if(world.getBlockId(i+x, j-y, k+z) == Block.stone.blockID)

                      // {

                            world.setBlock(

                                i + x, // this makes blocks of air go out however many numOfBlocksOnXAxis was

                                j - y, // this makes blocks of air go out however many numOfBlocksOnYAxis was

                                k + z, // this makes blocks of air go out however many numOfBlocksOnZAxis was

                                00 // the block of air

                                );

                      //  }

                }

            }

        }

    }

}

 

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

change your constructor from this:

public PitfallHandler(World world, int x, int y, int z)
    {
        this.world = world; // the world
        this.x = i; // X axis
        this.y = j; // Y axis
        this.z = k; // Z axis
    }

 

to this:

public PitfallHandler(World world, int x, int y, int z)
    {
        this.world = world; // the world
        this.x = x; // X axis
        this.y = y; // Y axis
        this.z = z; // Z axis
    }

 

because at the moment you are still using null variables. but only with the location variables. the world variable is correct though xD

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

I wouldn't mind if it even showed any indication of what it's even doing tho....... it does absolutely nothing now...no block change, no error, nothing....

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

I wouldn't mind if it even showed any indication of what it's even doing tho....... it does absolutely nothing now...no block change, no error, nothing....

 

... what are you developing your code with? Eclipse alike many other IDEs come with a debugger. You should use that. It helps a lot finding out why your code doesn't work at all anymore.

Link to comment
Share on other sites

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

 

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

 

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

Link to comment
Share on other sites

I don't even know if its the loop

 

My point is:

 

You need to learn the basics before you can mod minecraft.

 

By not understanding that you needed to replace one set of loops with another set of loops and how to convert the pseudocode I posted into actual code, you have demonstrated that you have no idea what your doing.

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

 

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

 

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

Link to comment
Share on other sites

I don't even know if its the loop

 

My point is:

 

You need to learn the basics before you can mod minecraft.

 

By not understanding that you needed to replace one set of loops with another set of loops and how to convert the pseudocode I posted into actual code, you have demonstrated that you have no idea what your doing.

 

^^^ Agreed...

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

naw, my brain has been dead for a day or so now cuz of this problem......I can't even talk straight to my friends at this point. leave me alone about the "basics"

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

naw, my brain has been dead for a day or so now cuz of this problem......I can't even talk straight to my friends at this point. leave me alone about the "basics"

 

Okay. (Sorry about that, had a run in with a teacher at school :S) Do you have your source code anywhere? That way we can help a lot more. Can I see your Block code (where you activate the trap), and your current Pitfall generator?

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

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

    • Why are you creating duplicate threads? https://forums.minecraftforge.net/topic/122342-i-cant-get-information-out-of-crash-report/#comment-532898
    • Not sure if this help, because I am not familiar with what you are talking about.   The release notes for 1.19.3 explains the configuration file for where minecraft looks to populate each atlas. Search for atlas here: https://www.minecraft.net/en-us/article/minecraft-java-edition-1-19-3   This is the most recent default/vanilla configuration of the block atlas texture locations: https://github.com/misode/mcmeta/blob/assets/assets/minecraft/atlases/blocks.json
    • ---- 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
    • Thing is, in my cit/item folder i used to have seperate folders for every item i changed, not only to easily find them again when needed but also because some of the items i changed by name are the same base item like netherite tools for example. This change basically made it impossible to have multiple textures named for 1 item due to not being able to have the same named .properties files in the same location. Unless there will be a modded support for it like optifine or CIT resewn or any of the other CIT mods could allow for files to be read beyond just the cit/item and then your image and properties files. What i have (and maybe loads of other people do to is assets/optifine/cit/item/(name of item changed) and then the properties and image files. I don't know about all of this for sure i made this conclusion after some testing i did but to me this appears to be the problem, i'd really like to be proven wrong on this to be honest. Otherwise we'd have to wait for CIT mods to update to read more files than minecraft its-self allows.
    • Not true. Use the latest preview release of optifine (currently pre3)
  • Topics

×
×
  • Create New...

Important Information

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