Jump to content

How to ose non cubic model as mod-item?


Drachenbauer

Recommended Posts

Hello

i just cheated a pyramid-shaped umbrella in blender.

I also fitted it´s uv-mat to a minecraft-like texture.

Now i have the model as .blend and .obj-file and the texture as .png-file.

How can i use this umbrella as an item in a minecraft-mod?

Can i export it as .json?

.329560993_umbrella3d.png.fdb05be96033037f8962362f97b56bb5.png

Edited by Drachenbauer
Link to comment
Share on other sites

if i make an item-class for the umbrella, what must i put into it to use an .obi-modelloader insted of the normal json stuff?

 

And where in the ressource-folders must i place my obj-model and it´s textures?

 

Now i have got the basic mod setup with 16 items for different colored umbrellas registered.

And i have .obj-models and .png-textures for all 16 colors in the resource-folders.

how do i now load the models into the items?

 

And how can i control, how such an item looks in an inventory-slot, thrown on the ground, pinned in an item-frame and equipped in first and third person view?

Edited by Drachenbauer
Link to comment
Share on other sites

2 hours ago, diesieben07 said:

A TESR is not necessary for rendering OBJs.

That is true, but if DrachenBauer wants this

Quote

And how can i control, how such an item looks in an inventory-slot, thrown on the ground, pinned in an item-frame and equipped in first and third person view?

then (s)he may need to use an ItemStackTileEntityRenderer.

 

mbe81 uses item json for wavefront rendering (no TER), eg

 

mbe81b_boomerang_registry_name.json

{
  "loader": "forge:obj",
  "model" : "minecraftbyexample:models/entity/mbe81b_boomerang.obj",
  "flip-v": true,
  "detectCullableFaces": false,
  "diffuseLighting": true,
  "ambientToFullbright": false,
  "materialLibraryOverride": "minecraftbyexample:models/entity/mbe81b_boomerang.mtl",
  "__comment": "flip-v may be required if your texture appears mirrored.  See OBJloader::read() for other flags.  currently the available options are",
  "__comment1": "detectCullableFaces (default true) = try to convert faces to Directional Quads (EAST, WEST, etc) instead of just general quads",
  "__comment2": "diffuseLighting (default false) = attempt to apply the direction-dependent lighting as per vanilla blocks.  Currently does nothing.",
  "__comment3": "flipV (default false) = mirror the texture sheet top-->bottom (if your textures appear upside-down)",
  "__comment4": "ambientToFullbright (default true) = always render at maximum world illumination (combinedLight) regardless of the actual skylight or blocklight present",
  "__comment5": "materialLibraryOverrideLocation (default null) = use this path/filename for the material library file .mtl",
  "display": {
    "thirdperson_righthand": {
      "rotation": [ 180, 0, 90 ],
      "translation": [ 0.00, 3.50, -1.75 ],
      "scale": [ 0.04, 0.04, 0.04]
    },
    "thirdperson_lefthand": {
      "rotation": [ 90, 0, 90 ],
      "translation": [ 0.00, 3.50, -1.75 ],
      "scale": [ 0.04, 0.04, 0.04]
    },
    "firstperson_righthand": {
      "rotation": [ 188, 0, 90 ],
      "translation": [ 0.00, 5.25, -2.25 ],
      "scale": [ 0.05, 0.05, 0.05]
    },
    "firstperson_lefthand": {
      "rotation": [ 90, 0, 90 ],
      "translation": [ 0.00, 5.25, -2.25 ],
      "scale": [ 0.05, 0.05, 0.05]
    },
    "gui": {
      "rotation": [ 82, 0, 0 ],
      "translation": [ 0.75, -1.00, 0.00 ],
      "scale": [ 0.06, 0.06, 0.06]
    },
    "head": {
      "rotation": [ 0, 0, 0 ],
      "translation": [ 0.00, 0.00, 0.00 ],
      "scale": [ 0.05, 0.05, 0.05]
    },
    "fixed": {
      "rotation": [ 270, 162, 0 ],
      "translation": [ 0.00, 0.00, 0.25 ],
      "scale": [ 0.06, 0.06, 0.06]
    },
    "ground": {
      "rotation": [ 90, 278, 0 ],
      "translation": [ 0.00, 9.00, 0.00 ],
      "scale": [ 0.05, 0.05, 0.05]
    }
  }
}

 

Link to comment
Share on other sites

7 minutes ago, TheGreyGhost said:

That is true, but if DrachenBauer wants this

Quote

And how can i control, how such an item looks in an inventory-slot, thrown on the ground, pinned in an item-frame and equipped in first and third person view?

then (s)he may need to use an ItemStackTileEntityRenderer.

The forge:separate-perspective loader can be used to specify an entirely separate, embedded model for each perspective. See SeparatePerspectiveModel for some more info.

Link to comment
Share on other sites

As i thested it, i got this error:

Quote

java.util.concurrent.CompletionException: net.minecraft.util.ResourceLocationException: Non [a-z0-9_.-] character in namespace of location: D:\\Mods\\1_15_1\\UmbrellaMod\\src\\main\\resources\\assets\\umbrellamod\\textures\\model\\black_umbrella.png

and it was stuck in a circle of crashing and reloading.

But i see nothing uppercase or other stuff after the folder "src"...

Edited by Drachenbauer
Link to comment
Share on other sites

Quote

[m[36m[15:57:25] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/CORE]: Generating PackInfo named mod:umbrellamod for mod file D:\Mods\1_15_1\UmbrellaMod\bin\main
[m[36m[15:57:25] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file C:\Users\Besitzer\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.1.18_mapped_snapshot_20200312-1.15.1\forge-1.15.2-31.1.18_mapped_snapshot_20200312-1.15.1-recomp.jar
[m[32m[15:57:25] [Render thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, Mod Resources
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type CLIENT
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading config file type CLIENT at forge-client.toml for forge
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\Mods\1_15_1\UmbrellaMod\run\config\forge-client.toml
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\Mods\1_15_1\UmbrellaMod\run\config\forge-client.toml
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\Mods\1_15_1\UmbrellaMod\run\config\forge-client.toml for changes
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type COMMON
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.ModList/LOADING]: Dispatching parallel event LifecycleEvent:COMMON_SETUP
[m[36m[15:57:25] [Server-Worker-15/DEBUG] [ne.mi.fm.ModList/LOADING]: Dispatching parallel event LifecycleEvent:SIDED_SETUP
[m[32m[15:57:29] [Render thread/INFO] [minecraft/Minecraft]: Caught error loading resourcepacks, removing all selected resourcepacks
java.util.concurrent.CompletionException: net.minecraft.util.ResourceLocationException: Non [a-z0-9_.-] character in namespace of location: D:\\Mods\\1_15_1\\UmbrellaMod\\src\\main\\resources\\assets\\umbrellamod\\textures\\model\\black_umbrella.png
    at java.util.concurrent.CompletableFuture.encodeThrowable(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.CompletableFuture.completeThrowable(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.CompletableFuture$AsyncSupply.exec(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.ForkJoinTask.doExec(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.ForkJoinPool.runWorker(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source) ~[?:1.8.0_271] {}
Caused by: net.minecraft.util.ResourceLocationException: Non [a-z0-9_.-] character in namespace of location: D:\\Mods\\1_15_1\\UmbrellaMod\\src\\main\\resources\\assets\\umbrellamod\\textures\\model\\black_umbrella.png
    at net.minecraft.util.ResourceLocation.<init>(ResourceLocation.java:28) ~[?:?] {re:classloading}
    at net.minecraft.util.ResourceLocation.<init>(ResourceLocation.java:35) ~[?:?] {re:classloading}
    at net.minecraftforge.client.model.ModelLoaderRegistry.blockMaterial(ModelLoaderRegistry.java:167) ~[?:?] {re:classloading}
    at net.minecraftforge.client.model.ModelLoaderRegistry.resolveTexture(ModelLoaderRegistry.java:162) ~[?:?] {re:classloading}
    at net.minecraftforge.client.model.obj.OBJModel$ModelObject.lambda$getTextures$0(OBJModel.java:548) ~[?:?] {re:classloading}
    at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:1.8.0_271] {}
    at net.minecraftforge.client.model.obj.OBJModel$ModelObject.getTextures(OBJModel.java:548) ~[?:?] {re:classloading}
    at net.minecraftforge.client.model.obj.OBJModel$ModelGroup.getTextures(OBJModel.java:579) ~[?:?] {re:classloading}
    at net.minecraftforge.client.model.geometry.IMultipartModelGeometry.getTextures(IMultipartModelGeometry.java:57) ~[?:?] {re:classloading}
    at net.minecraftforge.client.model.BlockModelConfiguration.getTextureDependencies(BlockModelConfiguration.java:151) ~[?:?] {re:classloading}
    at net.minecraft.client.renderer.model.BlockModel.getTextures(BlockModel.java:157) ~[?:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.model.ModelBakery.lambda$processLoading$9(ModelBakery.java:199) ~[?:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at java.util.stream.ReferencePipeline$7$1.accept(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.HashMap$ValueSpliterator.forEachRemaining(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:1.8.0_271] {}
    at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:1.8.0_271] {}
    at net.minecraft.client.renderer.model.ModelBakery.processLoading(ModelBakery.java:200) ~[?:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
    at net.minecraftforge.client.model.ModelLoader.<init>(ModelLoader.java:72) ~[?:?] {re:classloading}
    at net.minecraft.client.renderer.model.ModelManager.prepare(ModelManager.java:58) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}
    at net.minecraft.client.renderer.model.ModelManager.prepare(ModelManager.java:19) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}
    at net.minecraft.client.resources.ReloadListener.lambda$reload$0(ReloadListener.java:12) ~[?:?] {re:classloading}
    ... 6 more

 

this circled again and again.

It seems like, it´s because of the absolute path in the .mtl-file if my model.

what kind of path must be used there?

I´m not sore, if the way, how it´s written in the json-files is compatible with .mtl...

Edited by Drachenbauer
Link to comment
Share on other sites

Just looked into it, the OBJ Loader even has some terrible Regex in it that attempts to parse absolute paths for textures and extract the resource domain and path. However for some reason in your OBJ file the backslashes are doubled, causing this to fail. Either make sure there are no absolute paths (should be in resource location format, like any other texture) or figure out why the software you are using incorrectly doubles the slashes.

Link to comment
Share on other sites

Now i schanged my .mtl files to this:

# Blender MTL File: 'Umbrella.blend'
# Material Count: 1

newmtl Material
Ns 225.000000
Ka 1.000000 1.000000 1.000000
Kd 0.800000 0.800000 0.800000
Ks 0.500000 0.500000 0.500000
Ke 0.0 0.0 0.0
Ni 1.450000
d 1.000000
illum 2
map_Kd umbrellamod:model/black_umbrella

It´s the same path-style as for the boomerang in the examples mod.

But i still get sometimes this error but sometimes i can enter the game, but the umbrellas have the black and purple error-texture...

 

Edit:

now it works. maybe it just needed some refreshes...

Edited by Drachenbauer
Link to comment
Share on other sites

1 minute ago, Drachenbauer said:

now i creadtd a model for closed umbrella, how can i make one click on the equipped umbrella opens it and another click closes it?

Make two items.

 

1 minute ago, Drachenbauer said:

And how can i make slow falling and soft landing while the umbrella is open

Add an attribute modifier for ForgeMod.ENTITY_GRAVITY to your item. Look at how it is used in LivingEntity with the slow falling potion.

Link to comment
Share on other sites

for slow falling, i added

    private static final UUID SLOW_FALLING_ID = UUID.fromString("A5B6CF2A-2F7C-31EF-9022-7C3E7D5E6ABA");
    private static final AttributeModifier SLOW_FALLING = new AttributeModifier(SLOW_FALLING_ID, "Slow falling acceleration reduction", -0.07, AttributeModifier.Operation.ADDITION).setSaved(false);
    public static final net.minecraft.entity.ai.attributes.IAttribute ENTITY_GRAVITY = new net.minecraft.entity.ai.attributes.RangedAttribute(null, "forge.entity_gravity", 0.08D, -8.0D, 8.0D).setShouldWatch(true);

above the constructor in the UmbrellaItem class and

        IAttributeInstance gravity = player.getAttribute(ENTITY_GRAVITY);
        gravity.applyModifier(SLOW_FALLING);
        player.fallDistance = 0.0F;

in "onUsingTick".

but falling is as fast as normal and i see the collison-particles on landing.

Must i place the lines in the seccond code-snippet into another method?

Link to comment
Share on other sites

Why on earth are you making your own attribute? Why are you reusing the modifier-UUID for the modifier used by the slow falling effect? Why are you naming your modifier the same?

 

You need to use ForgeMod.ENTITY_GRAVITY, not make your own attribute (nobody will care about it...). Also why would you do this in onUsingTick... Item already has a method that provides the attribute modifiers, don't apply them manually (look at swords for example).

Link to comment
Share on other sites

i thaught, this is the way to add a modifyer...

You told me to look in Entity living.

And i thaught, this is the way, it is used there.

 

in the sword i founf this:

public Multimap<String, AttributeModifier> getAttributeModifiers(EquipmentSlotType equipmentSlot) {
      Multimap<String, AttributeModifier> multimap = super.getAttributeModifiers(equipmentSlot);
      if (equipmentSlot == EquipmentSlotType.MAINHAND) {
         multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", (double)this.attackDamage, AttributeModifier.Operation.ADDITION));
         multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Weapon modifier", (double)this.attackSpeed, AttributeModifier.Operation.ADDITION));
      }

      return multimap;
   }

but in "SharedMonsterAttributes" i cannot find the "ENTITY_GRAVITY" attribute.

So how els can i put this attribute there?

 

If i replace "SharedMonsterAttributes" with "ForgeMod", it also cannot find "ENTITY_GRAVITY" in there...

The only appearens of "ENTITY_GRAVITY", that i can find, is in "LivingEntity"

Edited by Drachenbauer
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.