Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I'm trying to load a new world (Forge 1.20.1 version 47.2.0) and I keep crashing. Here's the pastebin: https://pastebin.com/H3rRQYid
  3. https://pastebin.com/CKfYxe6f thats the mod list its just some mods that i like and grouped together along with some newer mods that caught my eye. i load into minecraft fine, click singleplayer, this is a new modpack so i click create new world, everything seems fine and then i click create new world it starts preparing for world creation and then this error message pops up. Errors in currently selected datapacks prevented the world from loading. You can either try to load it with only the vanilla data pack ("safe mode"), or go back to the title screen and fix it manually. The game doesnt crash so I don't know if a crash report would help. when i click safe mode the screen freezes for a minute and then nothing happens and im still on that error screen. clicking back to title screen takes me back to the title screen. in the data packs screen there is a lot of red data packs. ive tried turning them all off but then when it tries to validate it says "Data pack validation failed!" also all the data packs just automatically downloaded with the mods i havnt added any extra ones. i can post a picture of the select data packs screen but it would take a lot of scrolling and multiple pictures so just let me know if i need to do that. a few examples of the text on the red dats packs are the following. - examplemod resources (this is what most of them say) - resources used for aquaculture (or whatever other mod name) - mobcatcher resources (again changes with mod name) -${mod_name} some also have mod descriptions or just the mod name or other variations of modname stuff or modname resources and when hovering over any of the red ones it says (made for an older version of minecraft) even when the mod says its for 1.18.2. lmk if you need any more info like logs or stuff and sorry for the long message just want to give lots of info.
  4. Today
  5. Problem was in specific method in Screen (version 1.20.4) protected <T extends GuiEventListener & Renderable & NarratableEntry> T addRenderableWidget(T arg) { this.renderables.add((Renderable)arg); return this.addWidget(arg); } I assume because of these multi-inheritance interfaces. After rewriting it in the fields, everything worked. Final working code: @Shadow @Final public List<Renderable> renderables; @Shadow @Final private List<GuiEventListener> children; @Shadow @Final private List<NarratableEntry> narratables; public void custom$addRenderableWidget(AbstractWidget widget) { renderables.add(widget); children.add(widget); narratables.add(widget); }
  6. hey, I'm trying to make a server with mods and it's not working. when I run it without mods, it works normally Log:[27maj2024 17:53:12.540] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 40.2.0, --fml.mcVersion, 1.18.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220404.173914] [27maj2024 17:53:12.544] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 9.1.3+9.1.3+main.9b69c82a starting: java version 22.0.1 by Oracle Corporation [27maj2024 17:53:12.660] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/kamil/Desktop/server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2314!/ Service=ModLauncher Env=SERVER [27maj2024 17:53:13.006] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\kamil\Desktop\server\libraries\net\minecraftforge\fmlcore\1.18.2-40.2.0\fmlcore-1.18.2-40.2.0.jar is missing mods.toml file [27maj2024 17:53:13.010] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\kamil\Desktop\server\libraries\net\minecraftforge\javafmllanguage\1.18.2-40.2.0\javafmllanguage-1.18.2-40.2.0.jar is missing mods.toml file [27maj2024 17:53:13.013] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\kamil\Desktop\server\libraries\net\minecraftforge\lowcodelanguage\1.18.2-40.2.0\lowcodelanguage-1.18.2-40.2.0.jar is missing mods.toml file [27maj2024 17:53:13.015] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\kamil\Desktop\server\libraries\net\minecraftforge\mclanguage\1.18.2-40.2.0\mclanguage-1.18.2-40.2.0.jar is missing mods.toml file [27maj2024 17:53:13.101] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [27maj2024 17:53:15.035] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [27maj2024 17:53:15.075] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [27maj2024 17:53:15.139] [main/WARN] [mixin/]: Reference map 'bloodmagic.refmap.json' for bloodmagic.mixins.json could not be read. If this is a development environment you can ignore this message [27maj2024 17:53:15.415] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/item/ItemStack (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.416] [main/WARN] [mixin/]: @Mixin target net.minecraft.world.item.ItemStack was not found placebo.mixins.json:ItemStackMixin [27maj2024 17:53:15.439] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.447] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.449] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.456] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.457] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.461] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.461] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.463] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:15.463] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [27maj2024 17:53:16.436] [main/WARN] [mixin/]: Error loading class: java/lang/Boolean (java.lang.IllegalArgumentException: Unsupported class file major version 66) Mods:https://ibb.co/xj5qHYK
  7. How did you manage to get it working?
  8. Hi Everyone! I was playing in modded singleplayer, and suddenly mobs stopped moving, I couldn't hit them, basically I could do things but nothing happened, like destroying blocks didn't drop it, things like that. When I tried to quit and save my world, it was just writing Saving World but nothing happened, and eventually I always had to restart my computer to stop minecraft. Can someone please help me find out what could cause the issue? Here is my debug log: https://pastebin.com/X9F0M9sq This is not the complete debug log, I was pasting the last couple of hundreds of rows because of the size. In case it's needed, I will repaste rows earlier. Thank you very much in advance!
  9. As stated in the Title, I can't download forge for minecraft 1.20.06. When I click on the install button i get the AD wall, but after 10 seconds i don't get the red button to install forge. This problem also implies the older versions of Forge I also don't see any ads on the site. Does anybode know what to do?
  10. I want to download Forge 1.20.6, but when I press download, it redirects me to Adfocus and does not provide any download. I have never encountered such a problem when I downloaded Forge 1.18.2 at least 12 months ago.
  11. did you find any solutions? i have the same problem and also that mahito doesnt transform
  12. Here's a simple example to solve this particular issue: public class ModArmorMaterials { public static final DeferredRegister<ArmorMaterial> ARMORS = DeferredRegister.create(Registries.ARMOR_MATERIAL, MyModName.MOD_ID); public static final RegistryObject<ArmorMaterial> COPPER = registerArmor("copper", Util.make(new EnumMap<>(ArmorItem.Type.class), enumMap -> { enumMap.put(ArmorItem.Type.BOOTS, 1); enumMap.put(ArmorItem.Type.LEGGINGS, 4); enumMap.put(ArmorItem.Type.CHESTPLATE, 5); enumMap.put(ArmorItem.Type.HELMET, 2); enumMap.put(ArmorItem.Type.BODY, 4); }), 12, SoundEvents.ARMOR_EQUIP_IRON, 0.0F, 0.0F, () -> Ingredient.of(Items.COPPER_INGOT)); private static RegistryObject<ArmorMaterial> registerArmor(String pGroup, EnumMap<ArmorItem.Type, Integer> pEnumMap, int pEnchantmentValue, Holder<SoundEvent> pEquipSound, float pToughness, float pKnockbackResistance, Supplier<Ingredient> pRepairIngredient) { List<ArmorMaterial.Layer> pLayerList = List.of(new ArmorMaterial.Layer(new ResourceLocation(pGroup))); return registerArmor(pGroup, pEnumMap, pEnchantmentValue, pEquipSound, pToughness, pKnockbackResistance, pRepairIngredient, pLayerList); } private static RegistryObject<ArmorMaterial> registerArmor( String pGroup, EnumMap<ArmorItem.Type, Integer> pEnumMap, int pEnchantmentValue, Holder<SoundEvent> pEquipSound, float pToughness, float pKnockbackResistance, Supplier<Ingredient> pRepairIngredient, List<ArmorMaterial.Layer> pLayerList) { return ARMORS.register(pGroup, () -> new ArmorMaterial(pEnumMap, pEnchantmentValue, pEquipSound, pRepairIngredient, pLayerList, pToughness, pKnockbackResistance)); } public static void register(IEventBus eventBus) { ARMORS.register(eventBus); } } Essentially, the TierSortingRegistry has been removed and so you now need to set up your own DeferredRegister. Please see the minecraftforge GitHub for more information; I found this solution through their issues (https://github.com/MinecraftForge/MinecraftForge/issues/9961)
  13. How did I even leave that in there? I’ll try it in a bit, that very well could be it.
  14. Greetings, I met a problem with my Forge server (47.2.0-1.20.1) that I can't join with the following line. (singleplayer world working fine) [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Sharyna lost connection: Internal Exception: io.netty.handler.codec.EncoderException: java.lang.NullPointerException: Cannot invoke "net.minecraft.resources.ResourceLocation.toString()" because "p_130086_" is null At first it was errored with packet size error, but I fixed that with the Connectivity mod, however, after that this popped up and can't find the source of it. Since the logs are big, I couldn't upload on paste.gg or other site ... so here it is (if the files are deleted, please notice me and I'll upload again. Debug and Latest log
  15. Дерево тис
  16. Hi FlamingPigman, I am also having this issue and looking into a work-around. Please keep us updated if you find any solution.
  17. Make a test without the mod essential
  18. Add the crash-report or latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here
  19. Also add the crash-report or latest.log (logs-folder)
  20. Sandanu2024

    dragons

    I want a mode with dragons
  21. Hello there! I'm here today to invite you to join us in an experience like no other. We play on a server that aims to simulate civilization in minecraft and we invite you to join us. Become part of an expansive nation, grow your power and influence or perhaps simply assist your countrymen in their own endeavors. With enough effort here you can do anything you can imagine. Lead an army into battle, rule over bustling towns, create a company and become rich, or perhaps retire to a simple life of farming with a small group of friends and simply enjoy the days as they come. We also host events regularly so I promise it won't get boring for a while. If your even slightly interested I highly recommend you join the discord! We can answer any questions you have there. Thank you for your time and interest and I hope to see you soon! https://discord.com/invite/VGxhdF2V56
  22. Hello, I was playing with my modpack and everything was fine, but last time there was an error ---- Minecraft Crash Report ---- // Surprise! Haha. Well, this is awkward. Time: 2024-05-27 04:12:55 Description: Rendering overlay java.lang.IllegalArgumentException: Failed to create player model for default at net.minecraft.client.renderer.entity.EntityRenderers.m_234604_(EntityRenderers.java:171) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:automobility.mixins.json:EntityRenderersMixin,pl:mixin:A} at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:196) ~[guava-31.0.1-jre.jar%23121!/:?] {} at net.minecraft.client.renderer.entity.EntityRenderers.m_174051_(EntityRenderers.java:167) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:automobility.mixins.json:EntityRenderersMixin,pl:mixin:A} at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_6213_(EntityRenderDispatcher.java:345) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:twilightforest:renderer,xf:fml:twilightforest:bake,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:twilightforest:renderer,xf:fml:twilightforest:bake,pl:mixin:APP:infernal-expansion.mixins.json:client.MixinEntityRendererManager,pl:mixin:APP:playerAnimator-common.mixins.json:firstPerson.EntityRenderDispatcherMixin,pl:mixin:APP:mixins.oculus.json:MixinEntityRenderDispatcher,pl:mixin:APP:mixins.oculus.json:entity_render_context.MixinEntityRenderDispatcher,pl:mixin:APP:createbigcannons-common.mixins.json:client.EntityRenderDispatcherMixin,pl:mixin:APP:friendsandfoes-common.mixins.json:EntityRenderDispatcherMixin,pl:mixin:APP:mixins.essential.json:client.renderer.entity.Mixin_DontRenderHitboxOnEmulatedPlayer,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.server.packs.resources.ResourceManagerReloadListener.m_10759_(ResourceManagerReloadListener.java:15) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,re:mixin,re:classloading} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:787) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at com.mojang.blaze3d.systems.RenderSystem.m_69884_(RenderSystem.java:211) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinGlStateManager,pl:mixin:APP:mixins.oculus.json:MixinRenderSystem,pl:mixin:APP:mixins.oculus.json:statelisteners.MixinRenderSystem,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:APP:fpsreducer.mixins.json:RenderSystemMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_SuppressScreenshotBufferFlip,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc122477.RenderSystemMixin,pl:mixin:A} at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:198) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinGlStateManager,pl:mixin:APP:mixins.oculus.json:MixinRenderSystem,pl:mixin:APP:mixins.oculus.json:statelisteners.MixinRenderSystem,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:APP:fpsreducer.mixins.json:RenderSystemMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_SuppressScreenshotBufferFlip,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc122477.RenderSystemMixin,pl:mixin:A} at com.mojang.blaze3d.platform.Window.m_85435_(Window.java:337) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:rubidium.mixins.json:core.MixinWindow,pl:mixin:APP:vinery-common.mixins.json:WindowMixin,pl:mixin:APP:mixins.oculus.json:MixinWindow,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinWindow,pl:mixin:APP:sodium-extra.mixins.json:adaptive_sync.MixinWindow,pl:mixin:APP:sodium-extra.mixins.json:reduce_resolution_on_mac.MixinWindow,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_ScaleForMainMenu,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1143) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:700) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.m_239872_(Main.java:212) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.13.jar%23101!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {} Caused by: java.lang.IllegalArgumentException: No model for layer midnight-hats:witch_hat#main at net.minecraft.client.model.geom.EntityModelSet.m_171103_(EntityModelSet.java:17) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,re:classloading,pl:mixin:APP:automobility_forge.mixins.json:jsonem.EntityModelSetMixin,pl:mixin:A} at eu.midnightdust.hats.witch.WitchHatFeatureRenderer.<init>(WitchHatFeatureRenderer.java:43) ~[midnightlib-1.0.0-forge.jar%23826!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.player.PlayerRenderer.handler$cje000$addFeatures(PlayerRenderer.java:3022) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:infernal-expansion.mixins.json:client.MixinPlayerRenderer,pl:mixin:APP:playerAnimator-common.mixins.json:PlayerRendererMixin,pl:mixin:APP:mixins.hammerlib.json:client.render.PlayerRendererMixin,pl:mixin:APP:doapi-common.mixins.json:armor.PlayerEntityRendererMixin,pl:mixin:APP:modernfix-forge.mixins.json:bugfix.entity_pose_stack.PlayerRendererMixin,pl:mixin:APP:midnightlib.mixins.json:MixinPlayerEntityRenderer,pl:mixin:APP:notenoughanimations.mixins.json:PlayerRendererMixin,pl:mixin:APP:ad_astra-common.mixins.json:client.PlayerRendererMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerRenderer,pl:mixin:APP:railways-common.mixins.json:client.MixinPlayerRenderer,pl:mixin:APP:customizableelytra.mixins.json:PlayerRendererMixin,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc111516.PlayerEntityRendererMixin,pl:mixin:APP:waveycapes.mixins.json:PlayerRendererMixin,pl:mixin:APP:blueprint.mixins.json:client.PlayerRendererMixin,pl:mixin:APP:skinlayers3d.mixins.json:PlayerRendererMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.PlayerRendererMixin,pl:mixin:APP:expandability-common.mixins.json:swimming.client.PlayerRendererMixin,pl:mixin:APP:mixins.essential.json:client.renderer.entity.MixinRenderPlayer,pl:mixin:APP:mixins.essential.json:cosmetics.skinmask.Mixin_ApplyToHandRenderer,pl:mixin:APP:mixins.essential.json:cosmetics.skinmask.Mixin_ApplyToPlayerRenderer,pl:mixin:APP:create.mixins.json:client.PlayerRendererMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.player.PlayerRenderer.<init>(PlayerRenderer.java:56) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:infernal-expansion.mixins.json:client.MixinPlayerRenderer,pl:mixin:APP:playerAnimator-common.mixins.json:PlayerRendererMixin,pl:mixin:APP:mixins.hammerlib.json:client.render.PlayerRendererMixin,pl:mixin:APP:doapi-common.mixins.json:armor.PlayerEntityRendererMixin,pl:mixin:APP:modernfix-forge.mixins.json:bugfix.entity_pose_stack.PlayerRendererMixin,pl:mixin:APP:midnightlib.mixins.json:MixinPlayerEntityRenderer,pl:mixin:APP:notenoughanimations.mixins.json:PlayerRendererMixin,pl:mixin:APP:ad_astra-common.mixins.json:client.PlayerRendererMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerRenderer,pl:mixin:APP:railways-common.mixins.json:client.MixinPlayerRenderer,pl:mixin:APP:customizableelytra.mixins.json:PlayerRendererMixin,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc111516.PlayerEntityRendererMixin,pl:mixin:APP:waveycapes.mixins.json:PlayerRendererMixin,pl:mixin:APP:blueprint.mixins.json:client.PlayerRendererMixin,pl:mixin:APP:skinlayers3d.mixins.json:PlayerRendererMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.PlayerRendererMixin,pl:mixin:APP:expandability-common.mixins.json:swimming.client.PlayerRendererMixin,pl:mixin:APP:mixins.essential.json:client.renderer.entity.MixinRenderPlayer,pl:mixin:APP:mixins.essential.json:cosmetics.skinmask.Mixin_ApplyToHandRenderer,pl:mixin:APP:mixins.essential.json:cosmetics.skinmask.Mixin_ApplyToPlayerRenderer,pl:mixin:APP:create.mixins.json:client.PlayerRendererMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.EntityRenderers.m_174097_(EntityRenderers.java:24) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:automobility.mixins.json:EntityRenderersMixin,pl:mixin:A} at net.minecraft.client.renderer.entity.EntityRenderers.m_234604_(EntityRenderers.java:169) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:automobility.mixins.json:EntityRenderersMixin,pl:mixin:A} ... 134 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mod: MidnightLib (midnightlib), Version: 1.0.0 at TRANSFORMER/[email protected]/eu.midnightdust.hats.witch.WitchHatFeatureRenderer.<init>(WitchHatFeatureRenderer.java:43) Stacktrace: at net.minecraft.client.renderer.entity.EntityRenderers.m_234604_(EntityRenderers.java:171) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:automobility.mixins.json:EntityRenderersMixin,pl:mixin:A} at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:196) ~[guava-31.0.1-jre.jar%23121!/:?] {} at net.minecraft.client.renderer.entity.EntityRenderers.m_174051_(EntityRenderers.java:167) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:automobility.mixins.json:EntityRenderersMixin,pl:mixin:A} at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_6213_(EntityRenderDispatcher.java:345) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:twilightforest:renderer,xf:fml:twilightforest:bake,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:twilightforest:renderer,xf:fml:twilightforest:bake,pl:mixin:APP:infernal-expansion.mixins.json:client.MixinEntityRendererManager,pl:mixin:APP:playerAnimator-common.mixins.json:firstPerson.EntityRenderDispatcherMixin,pl:mixin:APP:mixins.oculus.json:MixinEntityRenderDispatcher,pl:mixin:APP:mixins.oculus.json:entity_render_context.MixinEntityRenderDispatcher,pl:mixin:APP:createbigcannons-common.mixins.json:client.EntityRenderDispatcherMixin,pl:mixin:APP:friendsandfoes-common.mixins.json:EntityRenderDispatcherMixin,pl:mixin:APP:mixins.essential.json:client.renderer.entity.Mixin_DontRenderHitboxOnEmulatedPlayer,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.server.packs.resources.ResourceManagerReloadListener.m_10759_(ResourceManagerReloadListener.java:15) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,re:mixin,re:classloading} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:787) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_ThreadTaskExecutor,pl:mixin:A} at net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) ~[?:?] {} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) ~[?:?] {} at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) ~[?:?] {re:mixin} at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) ~[?:?] {} at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} at com.mojang.blaze3d.systems.RenderSystem.m_69884_(RenderSystem.java:211) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinGlStateManager,pl:mixin:APP:mixins.oculus.json:MixinRenderSystem,pl:mixin:APP:mixins.oculus.json:statelisteners.MixinRenderSystem,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:APP:fpsreducer.mixins.json:RenderSystemMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_SuppressScreenshotBufferFlip,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc122477.RenderSystemMixin,pl:mixin:A} at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:198) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinGlStateManager,pl:mixin:APP:mixins.oculus.json:MixinRenderSystem,pl:mixin:APP:mixins.oculus.json:statelisteners.MixinRenderSystem,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:APP:fpsreducer.mixins.json:RenderSystemMixin,pl:mixin:APP:mixins.essential.json:client.Mixin_SuppressScreenshotBufferFlip,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc122477.RenderSystemMixin,pl:mixin:A} -- Overlay render details -- Details: Overlay name: net.minecraft.client.gui.screens.LoadingOverlay Stacktrace: at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:888) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vinery-common.mixins.json:GameRendererMixin,pl:mixin:APP:supplementaries-common.mixins.json:GameRendererMixin,pl:mixin:APP:mixins.oculus.json:GameRendererAccessor,pl:mixin:APP:mixins.oculus.json:MixinGameRenderer,pl:mixin:APP:mixins.oculus.json:MixinModelViewBobbing,pl:mixin:APP:mixins.oculus.json:MixinTweakFarPlane,pl:mixin:APP:cgm.mixins.json:client.GameRendererMixin,pl:mixin:APP:foglooksgoodnow.mixins.json:client.GameRendererMixin,pl:mixin:APP:zeta_forge.mixins.json:client.GameRenderMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.compat.MixinGameRenderer,pl:mixin:APP:ad_astra-common.mixins.json:client.GameRendererMixin,pl:mixin:APP:mixins.satin.client.json:event.GameRendererMixin,pl:mixin:APP:railways-common.mixins.json:client.MixinGameRenderer,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinGameRenderer,pl:mixin:APP:cameraoverhaul.mixins.json:modern.GameRendererMixin,pl:mixin:APP:debugify-common.mixins.json:basic.client.mc217716.GameRendererMixin,pl:mixin:APP:sodium-extra.mixins.json:prevent_shaders.MixinGameRenderer,pl:mixin:APP:forge-DistantHorizons.mixins.json:client.MixinGameRenderer,pl:mixin:APP:okzoomer.mixins.json:GameRendererMixin,pl:mixin:APP:mixins.essential.json:client.renderer.MixinEntityRenderer_Zoom,pl:mixin:APP:create.mixins.json:accessor.GameRendererAccessor,pl:mixin:APP:create.mixins.json:client.GameRendererMixin,pl:mixin:APP:mixins.oculus.json:MixinGameRenderer_NightVisionCompat,pl:mixin:APP:securitycraft.mixins.json:camera.GameRendererMixin,pl:mixin:APP:mixins.essential.json:events.Mixin_GuiDrawScreenEvent_Priority,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1115) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:700) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.m_239872_(Main.java:212) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23741!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.13.jar%23101!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {} -- Last reload -- Details: Reload number: 1 Reload reason: initial Finished: No Packs: Default, ic2loader, Faithful 32x - 1.19.2.zip, quark-emote-pack, Essential (forge_1.19.2).jar Recovery: Yes Recovery reason: java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Failed to create player model for default at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:791) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:795) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:784) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.m_10834_(SimpleReloadInstance.java:68) at java.base/java.util.concurrent.CompletableFuture$UniCompletion.claim(CompletableFuture.java:572) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:714) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:614) at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:726) at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) at TRANSFORMER/[email protected]/com.mojang.blaze3d.systems.RenderSystem.m_69884_(RenderSystem.java:211) at TRANSFORMER/[email protected]/com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:198) at TRANSFORMER/[email protected]/com.mojang.blaze3d.platform.Window.m_85435_(Window.java:337) at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1143) at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.m_91374_(Minecraft.java:700) at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.m_239872_(Main.java:212) at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:51) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:77) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Caused by: java.lang.IllegalArgumentException: Failed to create player model for default at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.EntityRenderers.m_234604_(EntityRenderers.java:171) at MC-BOOTSTRAP/[email protected]/com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:196) at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.EntityRenderers.m_174051_(EntityRenderers.java:167) at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_6213_(EntityRenderDispatcher.java:345) at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.ResourceManagerReloadListener.m_10759_(ResourceManagerReloadListener.java:15) at java.base/java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:787) ... 129 more Caused by: java.lang.IllegalArgumentException: No model for layer midnight-hats:witch_hat#main at TRANSFORMER/[email protected]/net.minecraft.client.model.geom.EntityModelSet.m_171103_(EntityModelSet.java:17) at TRANSFORMER/[email protected]/eu.midnightdust.hats.witch.WitchHatFeatureRenderer.<init>(WitchHatFeatureRenderer.java:43) at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.player.PlayerRenderer.handler$cje000$addFeatures(PlayerRenderer.java:3022) at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.player.PlayerRenderer.<init>(PlayerRenderer.java:56) at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.EntityRenderers.m_174097_(EntityRenderers.java:24) at TRANSFORMER/[email protected]/net.minecraft.client.renderer.entity.EntityRenderers.m_234604_(EntityRenderers.java:169) ... 134 more -- System Details -- Details: Minecraft Version: 1.19.2 Minecraft Version ID: 1.19.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 17.0.8, Microsoft Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft Memory: 919406464 bytes (876 MiB) / 3053453312 bytes (2912 MiB) up to 16810770432 bytes (16032 MiB) CPUs: 12 Processor Vendor: GenuineIntel Processor Name: 12th Gen Intel(R) Core(TM) i5-12400F Identifier: Intel64 Family 6 Model 151 Stepping 5 Microarchitecture: unknown Frequency (GHz): 2.50 Number of physical packages: 1 Number of physical CPUs: 6 Number of logical CPUs: 12 Graphics card #0 name: NVIDIA GeForce RTX 3060 Ti Graphics card #0 vendor: NVIDIA (0x10de) Graphics card #0 VRAM (MB): 4095.00 Graphics card #0 deviceId: 0x2489 Graphics card #0 versionInfo: DriverVersion=32.0.15.5585 Memory slot #0 capacity (MB): 16384.00 Memory slot #0 clockSpeed (GHz): 2.67 Memory slot #0 type: DDR4 Memory slot #1 capacity (MB): 16384.00 Memory slot #1 clockSpeed (GHz): 2.67 Memory slot #1 type: DDR4 Virtual memory max (MB): 37701.42 Virtual memory used (MB): 17330.34 Swap memory total (MB): 5120.00 Swap memory used (MB): 97.82 JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx16032m -Xms256m Loaded Shaderpack: ComplementaryShaders_v4.3.3.zip Profile: EXTREME (+0 options changed by user) Launched Version: forge-43.3.13 Backend library: LWJGL version 3.3.1 build 7 Backend API: NVIDIA GeForce RTX 3060 Ti/PCIe/SSE2 GL version 3.2.0 NVIDIA 555.85, NVIDIA Corporation Window size: 1920x1080 GL Caps: Using framebuffer using OpenGL 3.2 GL debug messages: Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Graphics mode: fancy Resource Packs: Current Language: Русский (Россия) CPU: 12x 12th Gen Intel(R) Core(TM) i5-12400F ModLauncher: 10.0.8+10.0.8+main.0ef7e830 ModLauncher launch target: forgeclient ModLauncher naming: srg ModLauncher services: mixin-0.8.5.jar mixin PLUGINSERVICE eventbus-6.0.3.jar eventbus PLUGINSERVICE fmlloader-1.19.2-43.3.13.jar slf4jfixer PLUGINSERVICE fmlloader-1.19.2-43.3.13.jar object_holder_definalize PLUGINSERVICE fmlloader-1.19.2-43.3.13.jar runtime_enum_extender PLUGINSERVICE fmlloader-1.19.2-43.3.13.jar capability_token_subclass PLUGINSERVICE accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE fmlloader-1.19.2-43.3.13.jar runtimedistcleaner PLUGINSERVICE modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE modlauncher-10.0.8.jar redirector TRANSFORMATIONSERVICE modlauncher-10.0.8.jar essential-loader TRANSFORMATIONSERVICE modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE FML Language Providers: [email protected] javafml@null [email protected] lowcodefml@null Mod List: YungsBetterDungeons-1.19.2-Forge-3.2.2.jar |YUNG's Better Dungeons |betterdungeons |1.19.2-Forge-3.2.2 |COMMON_SET|Manifest: NOSIGNATURE modernworldcreation_forge_1.0.0_MC_1.19.jar |Modern World Creation |modernworldcreation |1.0.0 |COMMON_SET|Manifest: NOSIGNATURE infernal-expansion-1.19.2-2.5.3.jar |Infernal Expansion |infernalexp |2.5.1 |COMMON_SET|Manifest: NOSIGNATURE cccbridge-mc1.19.2-forge-v1.5.1.jar |CC:C Bridge |cccbridge |1.5.1-forge |COMMON_SET|Manifest: NOSIGNATURE UndergroundVillages-1.19.2-1.2.0.jar |Underground Villages Mod |underground_villages |1.2.0 |COMMON_SET|Manifest: NOSIGNATURE player-animation-lib-forge-1.0.2.jar |Player Animator |playeranimator |1.0.2 |COMMON_SET|Manifest: NOSIGNATURE botarium-forge-1.19.2-1.9.2.jar |Botarium |botarium |1.9.2 |COMMON_SET|Manifest: NOSIGNATURE majruszs-difficulty-forge-1.19.2-1.9.9-backport.1.|Majrusz's Progressive Difficul|majruszsdifficulty |1.9.9-backport.1 |COMMON_SET|Manifest: NOSIGNATURE HammerLib-1.19.2-19.3.81.jar |HammerLib |hammerlib |19.3.81 |COMMON_SET|Manifest: 97:e8:52:e9:b3:f0:1b:83:57:4e:83:15:f7:e7:76:51:c6:60:5f:2b:45:59:19:a7:31:9e:98:69:56:4f:01:3c Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar |Entity Collision FPS Fix |entitycollisionfpsfix |2.0.0.0 |COMMON_SET|Manifest: NOSIGNATURE mcw-windows-2.2.1-mc1.19.2forge.jar |Macaw's Windows |mcwwindows |2.2.1 |COMMON_SET|Manifest: NOSIGNATURE stalwart-dungeons-1.19.2-1.2.8.jar |Stalwart Dungeons |stalwart_dungeons |1.2.8 |COMMON_SET|Manifest: NOSIGNATURE rubidium-mc1.19.2-0.6.2c.jar |Rubidium |rubidium |0.6.2c |COMMON_SET|Manifest: NOSIGNATURE create_jetpack-forge-3.3.1.jar |Create Jetpack |create_jetpack |3.3.1 |COMMON_SET|Manifest: NOSIGNATURE LotTweaks-mc1.19.2-version-2.2.4.jar |LotTweaks |lottweaks |2.2.4 |COMMON_SET|Manifest: NOSIGNATURE CTM-1.19.2-1.1.6+8.jar |ConnectedTexturesMod |ctm |1.19.2-1.1.6+8 |COMMON_SET|Manifest: NOSIGNATURE modernfix-forge-5.17.0+mc1.19.2.jar |ModernFix |modernfix |5.17.0+mc1.19.2 |COMMON_SET|Manifest: NOSIGNATURE YungsApi-1.19.2-Forge-3.8.10.jar |YUNG's API |yungsapi |1.19.2-Forge-3.8.10 |COMMON_SET|Manifest: NOSIGNATURE MaxHealthFix-Forge-1.19.2-8.0.2.jar |MaxHealthFix |maxhealthfix |8.0.2 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 toolleveling-forge-1.19.2-1.4.1.jar |Tool Leveling |toolleveling |1.19.2-1.4.1 |COMMON_SET|Manifest: NOSIGNATURE guardvillagers-1.19.2-1.5.9.jar |Guard Villagers |guardvillagers |1.19.2-1.5.9 |COMMON_SET|Manifest: NOSIGNATURE balm-forge-1.19.2-4.6.0.jar |Balm |balm |4.6.0 |COMMON_SET|Manifest: NOSIGNATURE SnowRealMagic-1.19.2-forge-6.5.4.jar |Snow! Real Magic! |snowrealmagic |6.5.4 |COMMON_SET|Manifest: NOSIGNATURE immersive_armors-1.5.6+1.19.2-forge.jar |Immersive Armors |immersive_armors |1.5.6+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE chat_heads-0.12.2-forge-1.19.2.jar |Chat Heads |chat_heads |0.12.2 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar|YUNG's Better Nether Fortresse|betterfortresses |1.19.2-Forge-1.0.6 |COMMON_SET|Manifest: NOSIGNATURE cloth-config-8.3.115-forge.jar |Cloth Config v8 API |cloth_config |8.3.115 |COMMON_SET|Manifest: NOSIGNATURE iterpg-0.5.0-1.19.2.jar |Iter RPG |iter_rpg |0.5.0 |COMMON_SET|Manifest: NOSIGNATURE geophilic-1.19-2.0.0c.jar |Geophilic |geophilic |1.19-2.0.0c |COMMON_SET|Manifest: NOSIGNATURE upgradednetherite-1.19.2-5.1.0.9-release.jar |Upgraded Netherite |upgradednetherite |1.19.2-5.1.0.9-relea|COMMON_SET|Manifest: NOSIGNATURE GeophilicReforged-v1.2.0.jar |Geophilic Reforged |geophilic_reforged |1.2.0 |COMMON_SET|Manifest: NOSIGNATURE structure_gel-1.19.2-2.7.3.jar |Structure Gel API |structure_gel |2.7.3 |COMMON_SET|Manifest: NOSIGNATURE handcrafted-forge-1.19.2-2.0.6.jar |Handcrafted |handcrafted |2.0.6 |COMMON_SET|Manifest: NOSIGNATURE morevillagers-forge-1.19-4.0.3.jar |More Villagers |morevillagers |4.0.3 |COMMON_SET|Manifest: NOSIGNATURE ToolStats-Forge-1.19.2-12.1.6.jar |ToolStats |toolstats |12.1.6 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 blur-forge-3.1.1+mc1.19.2.jar |Blur (Forge) |blur |3.1.1+mc1.19.2 |COMMON_SET|Manifest: NOSIGNATURE ironfurnaces-1.19.2-3.6.5.jar |Iron Furnaces |ironfurnaces |3.6.5 |COMMON_SET|Manifest: NOSIGNATURE dungeons_plus-1.19.2-1.3.1.jar |Dungeons Plus |dungeons_plus |1.3.1 |COMMON_SET|Manifest: NOSIGNATURE mcw-trapdoors-1.1.3-mc1.19.2forge.jar |Macaw's Trapdoors |mcwtrpdoors |1.1.3 |COMMON_SET|Manifest: NOSIGNATURE transparent-5.1.2+1.19-forge.jar |Transparent |transparent |5.1.2 |COMMON_SET|Manifest: NOSIGNATURE YungsBridges-1.19.2-Forge-3.1.0.jar |YUNG's Bridges |yungsbridges |1.19.2-Forge-3.1.0 |COMMON_SET|Manifest: NOSIGNATURE Botania-1.19.2-440-FORGE.jar |Botania |botania |1.19.2-440-FORGE |COMMON_SET|Manifest: NOSIGNATURE resourcefulconfig-forge-1.19.2-1.0.20.jar |Resourcefulconfig |resourcefulconfig |1.0.20 |COMMON_SET|Manifest: NOSIGNATURE Fishingreal-1.19.2-1.6.1.jar |Fishingreal |fishingreal |1.19.2-1.6.1 |COMMON_SET|Manifest: NOSIGNATURE TextruesRubidiumOptions-1.0.7-mc1.19.2.jar |TexTrue's Rubidium Options |reeses_sodium_options |1.0.7-mc1.19.2 |COMMON_SET|Manifest: NOSIGNATURE ImprovableSkills-1.19.2-19.2.13.jar |ImprovableSkills |improvableskills |19.2.13 |COMMON_SET|Manifest: NOSIGNATURE curios-forge-1.19.2-5.1.6.2.jar |Curios API |curios |1.19.2-5.1.6.2 |COMMON_SET|Manifest: NOSIGNATURE IC2Classic-1.19.2-2.0.9.2.jar |IC2 Classic |ic2 |1.19.2-2.0.9.2 |COMMON_SET|Manifest: NOSIGNATURE oculus-mc1.19.2-1.6.9.jar |Oculus |oculus |1.6.9 |COMMON_SET|Manifest: NOSIGNATURE YungsExtras-1.19.2-Forge-3.1.0.jar |YUNG's Extras |yungsextras |1.19.2-Forge-3.1.0 |COMMON_SET|Manifest: NOSIGNATURE FramedBlocks-6.8.6.jar |FramedBlocks |framedblocks |6.8.6 |COMMON_SET|Manifest: NOSIGNATURE AngelRing2-1.19.2-2.1.8.jar |Angel Ring 2 |angelring |2.1.8 |COMMON_SET|Manifest: NOSIGNATURE worldedit-mod-7.2.12.jar |WorldEdit |worldedit |7.2.12+6240-87f4ae1 |COMMON_SET|Manifest: NOSIGNATURE cumulus_menus-1.19.2-1.0.0-forge.jar |Cumulus |cumulus_menus |1.19.2-1.0.0-forge |COMMON_SET|Manifest: NOSIGNATURE mcw-roofs-2.3.0-mc1.19.2forge.jar |Macaw's Roofs |mcwroofs |2.3.0 |COMMON_SET|Manifest: NOSIGNATURE mutantmore-1.19.2-early-access-1.0.7.jar |Mutant More |mutantmore |1.0 |COMMON_SET|Manifest: NOSIGNATURE cfm-7.0.0-pre35-1.19.2.jar |MrCrayfish's Furniture Mod |cfm |7.0.0-pre35 |COMMON_SET|Manifest: NOSIGNATURE mcw-furniture-3.2.2-mc1.19.2forge.jar |Macaw's Furniture |mcwfurnitures |3.2.2 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterEndIsland-1.19.2-Forge-1.0.jar |YUNG's Better End Island |betterendisland |1.19.2-Forge-1.0 |COMMON_SET|Manifest: NOSIGNATURE flightlib-forge-1.2.0.jar |Flight Lib |flightlib |1.2.0 |COMMON_SET|Manifest: NOSIGNATURE nitrogen_internals-1.19.2-1.0.3-forge.jar |Nitrogen |nitrogen_internals |1.19.2-1.0.3-forge |COMMON_SET|Manifest: NOSIGNATURE FallingTree-1.19.2-3.10.1.jar |FallingTree |fallingtree |3.10.1 |COMMON_SET|Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29 l2library-1.9.7.jar |L2 Library |l2library |1.9.7 |COMMON_SET|Manifest: NOSIGNATURE FastLeafDecay-30.jar |FastLeafDecay |fastleafdecay |30 |COMMON_SET|Manifest: NOSIGNATURE exoticbirds-1.19.2-2.6.0.jar |Exotic Birds |exoticbirds |2.6.0 |COMMON_SET|Manifest: NOSIGNATURE Disenchanting-forge-1.19-2.2.2.jar |Disenchanting |disenchanting |2.2.0 |COMMON_SET|Manifest: NOSIGNATURE CodeChickenLib-1.19.2-4.3.2.490-universal.jar |CodeChicken Lib |codechickenlib |4.3.2.490 |COMMON_SET|Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71 YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar |YUNG's Better Mineshafts |bettermineshafts |1.19.2-Forge-3.2.1 |COMMON_SET|Manifest: NOSIGNATURE PlayerRevive_FORGE_v2.0.14_mc1.19.2.jar |PlayerRevive |playerrevive |2.0.14 |COMMON_SET|Manifest: NOSIGNATURE NekosEnchantedBooks-1.19-1.8.0.jar |Neko's Enchanted Books |nebs |1.8.0 |COMMON_SET|Manifest: NOSIGNATURE majrusz-library-forge-1.19.2-7.0.5-backport.1.jar |Majrusz Library |majruszlibrary |7.0.5-backport.1 |COMMON_SET|Manifest: NOSIGNATURE mcw-lights-1.0.6-mc1.19.2forge.jar |Macaw's Lights and Lamps |mcwlights |1.0.6 |COMMON_SET|Manifest: NOSIGNATURE Essential (forge_1.19.2).jar |Essential |essential |1.3.2.4+g6b55293e12 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterJungleTemples-1.19.2-Forge-1.0.1.jar |YUNG's Better Jungle Temples |betterjungletemples |1.19.2-Forge-1.0.1 |COMMON_SET|Manifest: NOSIGNATURE elytraslot-forge-6.1.1+1.19.2.jar |Elytra Slot |elytraslot |6.1.1+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE Kiwi-1.19.2-forge-8.3.6.jar |Kiwi |kiwi |8.3.6 |COMMON_SET|Manifest: NOSIGNATURE mowziesmobs-1.6.3.jar |Mowzie's Mobs |mowziesmobs |1.6.3 |COMMON_SET|Manifest: NOSIGNATURE geckolib-forge-1.19-3.1.40.jar |GeckoLib |geckolib3 |3.1.40 |COMMON_SET|Manifest: NOSIGNATURE createbigcannons-forge-1.19.2-0.5.4.jar |Create Big Cannons |createbigcannons |0.5.4-nightly-cddd0a|COMMON_SET|Manifest: NOSIGNATURE MutantMonsters-v4.0.6-1.19.2-Forge.jar |Mutant Monsters |mutantmonsters |4.0.6 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a cgm-forge-1.19.2-1.3.7.jar |MrCrayfish's Gun Mod |cgm |1.3.7 |COMMON_SET|Manifest: NOSIGNATURE harvestwithease-1.19.2-8.0.1.0-forge.jar |Harvest with ease |harvestwithease |8.0.1.0 |COMMON_SET|Manifest: NOSIGNATURE jei-1.19.2-forge-11.6.0.1019.jar |Just Enough Items |jei |11.6.0.1019 |COMMON_SET|Manifest: NOSIGNATURE VisualWorkbench-v4.2.4-1.19.2-Forge.jar |Visual Workbench |visualworkbench |4.2.4 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a AttributeFix-Forge-1.19.2-17.2.8.jar |AttributeFix |attributefix |17.2.8 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 goblintraders-1.8.0-1.19.2.jar |Goblin Traders |goblintraders |1.8.0 |COMMON_SET|Manifest: NOSIGNATURE epicsamurai-0.0.17-1.19.2-forge.jar |Epic Samurai |epicsamurai |0.0.17-1.19.2-forge |COMMON_SET|Manifest: NOSIGNATURE caelus-forge-1.19.2-3.0.0.6.jar |Caelus API |caelus |1.19.2-3.0.0.6 |COMMON_SET|Manifest: NOSIGNATURE immersive_weathering-1.19.2-1.2.10-forge.jar |Immersive Weathering |immersive_weathering |1.19.2-1.2.10 |COMMON_SET|Manifest: NOSIGNATURE mcw-holidays-1.1.0-mc1.19.2forge.jar |Macaw's Holidays |mcwholidays |1.1.0 |COMMON_SET|Manifest: NOSIGNATURE Fallingleaves-1.19.1-1.3.1.jar |Falling Leaves |fallingleaves |1.3.1 |COMMON_SET|Manifest: NOSIGNATURE SereneSeasons-1.19.2-8.1.0.24.jar |Serene Seasons |sereneseasons |0.0NONE |COMMON_SET|Manifest: NOSIGNATURE badpackets-forge-0.2.3.jar |Bad Packets |badpackets |0.2.3 |COMMON_SET|Manifest: NOSIGNATURE starlight-1.1.1+forge.cf5b10b.jar |Starlight |starlight |1.1.1+forge.a3aea74 |COMMON_SET|Manifest: NOSIGNATURE memoryleakfix-forge-1.17+-1.0.0.jar |Memory Leak Fix |memoryleakfix |1.0.0 |COMMON_SET|Manifest: NOSIGNATURE CraftTweaker-forge-1.19.2-10.1.55.jar |CraftTweaker |crafttweaker |10.1.55 |COMMON_SET|Manifest: NOSIGNATURE [Universal]Immersive Structures-2.0.7a.jar |Immersive Structure |imst |2.0.7a |COMMON_SET|Manifest: NOSIGNATURE mcw-paths-1.0.5-1.19.2forge.jar |Macaw's Paths and Pavings |mcwpaths |1.0.5 |COMMON_SET|Manifest: NOSIGNATURE ironchest-1.19.2-14.2.7.jar |Iron Chests |ironchest |1.19.2-14.2.7 |COMMON_SET|Manifest: NOSIGNATURE infernalmobs-1.19.2.4.jar |Infernal Mobs |infernalmobs |1.19.2.4 |COMMON_SET|Manifest: NOSIGNATURE smoothchunk-1.19.2-3.5.jar |Smoothchunk mod |smoothchunk |1.19.2-3.5 |COMMON_SET|Manifest: NOSIGNATURE voicechat-forge-1.19.2-2.5.15.jar |Simple Voice Chat |voicechat |1.19.2-2.5.15 |COMMON_SET|Manifest: NOSIGNATURE sound-physics-remastered-forge-1.19.2-1.4.2.jar |Sound Physics Remastered |sound_physics_remastered |1.19.2-1.4.2 |COMMON_SET|Manifest: NOSIGNATURE theoneprobe-1.19-6.2.2.jar |The One Probe |theoneprobe |1.19-6.2.2 |COMMON_SET|Manifest: NOSIGNATURE MouseTweaks-forge-mc1.19-2.23.jar |Mouse Tweaks |mousetweaks |2.23 |COMMON_SET|Manifest: NOSIGNATURE bettercombat-forge-1.7.1+1.19.jar |Better Combat |bettercombat |1.7.1+1.19 |COMMON_SET|Manifest: NOSIGNATURE Female-Gender-Mod-forge-1.19.1-3.0.1.jar |Wildfire's Female Gender Mod |wildfire_gender |1.19-3.0.0 |COMMON_SET|Manifest: NOSIGNATURE NoChatReports-FORGE-1.19.2-v1.5.1.jar |No Chat Reports |nochatreports |1.19.2-v1.5.1 |COMMON_SET|Manifest: NOSIGNATURE fastpaintings-1.19-1.1.3.jar |Fast Paintings |fastpaintings |1.19-1.1.3 |COMMON_SET|Manifest: NOSIGNATURE CreateTweaker-1.19.2-3.0.0.7.jar |CreateTweaker |createtweaker |3.0.0.7 |COMMON_SET|Manifest: NOSIGNATURE astikorcarts-1.19.2-1.1.2.jar |AstikorCarts |astikorcarts |1.1.2 |COMMON_SET|Manifest: NOSIGNATURE kffmod-3.12.0.jar |Kotlin For Forge |kotlinforforge |3.12.0 |COMMON_SET|Manifest: NOSIGNATURE Paintings-forge-1.19.2-10.2.4.0.jar |Paintings ++ |paintings |10.2.4.0 |COMMON_SET|Manifest: NOSIGNATURE notenoughanimations-forge-1.7.3-mc1.19.2.jar |NotEnoughAnimations |notenoughanimations |1.7.3 |COMMON_SET|Manifest: NOSIGNATURE flywheel-forge-1.19.2-0.6.10-20.jar |Flywheel |flywheel |0.6.10-20 |COMMON_SET|Manifest: NOSIGNATURE betterfog-1.19.2-1.1.2.jar |Fog Looks Good Now |foglooksgoodnow |1.1.1 |COMMON_SET|Manifest: NOSIGNATURE Xaeros_Minimap_24.1.1_Forge_1.19.1.jar |Xaero's Minimap |xaerominimap |24.1.1 |COMMON_SET|Manifest: NOSIGNATURE gravestone-forge-1.19.2-1.0.15.jar |Gravestone Mod |gravestone |1.19.2-1.0.15 |COMMON_SET|Manifest: NOSIGNATURE Croptopia-1.19.2-FORGE-2.2.2.jar |Croptopia |croptopia |2.2.2 |COMMON_SET|Manifest: NOSIGNATURE AutoRegLib-1.8.2-55.jar |AutoRegLib |autoreglib |1.8.2-55 |COMMON_SET|Manifest: NOSIGNATURE [1.19.2] SecurityCraft v1.9.6.1.jar |SecurityCraft |securitycraft |1.9.6.1 |COMMON_SET|Manifest: NOSIGNATURE sit-1.19-1.3.3.jar |Sit |sit |1.3.3 |COMMON_SET|Manifest: NOSIGNATURE entityculling-forge-1.6.1-mc1.19.2.jar |EntityCulling |entityculling |1.6.1 |COMMON_SET|Manifest: NOSIGNATURE Medieval Decoration Forge v.1.0 1.19.jar |PlayTics Deco |medieval_deco |1.0 |COMMON_SET|Manifest: NOSIGNATURE effective_fg-1.3.4.jar |Effective (Forge) |effective_fg |1.3.4 |COMMON_SET|Manifest: NOSIGNATURE ImmediatelyFast-Forge-1.2.15+1.19.2.jar |ImmediatelyFast |immediatelyfast |1.2.15+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE FastFurnace-1.19.2-7.0.0.jar |FastFurnace |fastfurnace |7.0.0 |COMMON_SET|Manifest: NOSIGNATURE oceansdelight-1.0.2-1.19.2.jar |Ocean's Delight |oceansdelight |1.0.2-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE DamageTilt-1.19-forge-0.1.2.jar |DamageTilt |damagetilt |0.1.2 |COMMON_SET|Manifest: NOSIGNATURE PuzzlesLib-v4.4.3-1.19.2-Forge.jar |Puzzles Lib |puzzleslib |4.4.3 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a extremesoundmuffler-3.39-forge-1.19.2.jar |Extreme Sound Muffler |extremesoundmuffler |3.39-forge-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE End's Phantasm - BETAv1.2.10.5 - 1.19.2.jar |End's Phantasm |phantasm |1.2.10.5 |COMMON_SET|Manifest: NOSIGNATURE xptome-1.19-2.1.7.jar |XP Tome |xpbook |2.1.7 |COMMON_SET|Manifest: NOSIGNATURE ad_astra-forge-1.19.2-1.12.7.jar |Ad Astra |ad_astra |1.12.7 |COMMON_SET|Manifest: NOSIGNATURE tetra-1.19.2-5.6.0.jar |Tetra |tetra |5.6.0 |COMMON_SET|Manifest: NOSIGNATURE tetraextras-0.1.4-1.19.jar |Tetra Extras |tetraextras |0.1.4-1.19 |COMMON_SET|Manifest: NOSIGNATURE cp_tweaks-1.0.7-1.19.2.jar |Create Planetary Tweaks |cp_tweaks |1.0.7-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE weaponmaster_ydm-forge-1.19.2-4.2.3.jar |YDM's Weapon Master |weaponmaster_ydm |4.2.3 |COMMON_SET|Manifest: NOSIGNATURE SkyVillages-1.0.3-1.19.2-1.20.x-forge-release.jar |Sky Villages |skyvillages |1.0.3 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar |YUNG's Better Witch Huts |betterwitchhuts |1.19.2-Forge-2.1.0 |COMMON_SET|Manifest: NOSIGNATURE netherportalfix-forge-1.19-10.0.1.jar |NetherPortalFix |netherportalfix |10.0.1 |COMMON_SET|Manifest: NOSIGNATURE satin-forge-1.19.2+1.12.3.jar |Satin Forge |satin |1.19.2+1.12.3 |COMMON_SET|Manifest: NOSIGNATURE aether-1.19.2-1.4.2-forge.jar |The Aether |aether |1.19.2-1.4.2-forge |COMMON_SET|Manifest: NOSIGNATURE naturalist-forge-4.0.3-1.19.2.jar |Naturalist |naturalist |4.0.3 |COMMON_SET|Manifest: NOSIGNATURE morediscs-1.19.2-33-forge.jar |MoreDiscs |morediscs |1.19.2-33-forge |COMMON_SET|Manifest: NOSIGNATURE DoggyTalents-1.19.2-2.6.10.jar |Doggy Talents 2 |doggytalents |2.6.10 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar |YUNG's Better Ocean Monuments |betteroceanmonuments |1.19.2-Forge-2.1.1 |COMMON_SET|Manifest: NOSIGNATURE Tips-Forge-1.19.2-8.0.27.jar |Tips |tipsmod |8.0.27 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 sophisticatedcore-1.19.2-0.6.4.605.jar |Sophisticated Core |sophisticatedcore |1.19.2-0.6.4.605 |COMMON_SET|Manifest: NOSIGNATURE realisticbees-1.19.2-3.8.jar |Realistic Bees |realisticbees |3.8 |COMMON_SET|Manifest: NOSIGNATURE ElytraPhysicsForge-1.1.1.jar |ElytraPhysicsForge |elytra_physics |1.1.1 |COMMON_SET|Manifest: NOSIGNATURE ritchiesprojectilelib-1.0.0-40ef15b+1.19.2-forge.j|Ritchie's Projectile Library |ritchiesprojectilelib |1.0.0-40ef15b+1.19.2|COMMON_SET|Manifest: NOSIGNATURE Prism-1.19.1-1.0.2.jar |Prism |prism |1.0.2 |COMMON_SET|Manifest: NOSIGNATURE Placebo-1.19.2-7.4.0.jar |Placebo |placebo |7.4.0 |COMMON_SET|Manifest: NOSIGNATURE citadel-2.1.4-1.19.jar |Citadel |citadel |2.1.4 |COMMON_SET|Manifest: NOSIGNATURE alexsmobs-1.21.1.jar |Alex's Mobs |alexsmobs |1.21.1 |COMMON_SET|Manifest: NOSIGNATURE iceandfire-1.19.2-2.1.13-beta-3.jar |Ice and Fire |iceandfire |1.19.2-2.1.13+build.|COMMON_SET|Manifest: NOSIGNATURE zombieawareness-1.19.2-1.12.3.jar |Zombie Awareness |zombieawareness |1.19.2-1.12.3 |COMMON_SET|Manifest: NOSIGNATURE mixinextras-forge-0.2.0.jar |MixinExtras |mixinextras |0.2.0 |COMMON_SET|Manifest: NOSIGNATURE Bookshelf-Forge-1.19.2-16.3.20.jar |Bookshelf |bookshelf |16.3.20 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 sophisticatedbackpacks-1.19.2-3.20.2.1035.jar |Sophisticated Backpacks |sophisticatedbackpacks |1.19.2-3.20.2.1035 |COMMON_SET|Manifest: NOSIGNATURE u_team_core-forge-1.19.2-4.4.3.297.jar |U Team Core |uteamcore |4.4.3.297 |COMMON_SET|Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0 create_dragon_lib-1.19.2-1.4.3.jar |Create: Dragon Lib |create_dragon_lib |1.4.3 |COMMON_SET|Manifest: NOSIGNATURE simpleplanes-1.19.2-5.2.2.jar |Simple Planes |simpleplanes |1.19.2-5.2.2 |COMMON_SET|Manifest: NOSIGNATURE mcw-doors-1.1.0forge-mc1.19.2.jar |Macaw's Doors |mcwdoors |1.1.0 |COMMON_SET|Manifest: NOSIGNATURE Rex's-AdditionalStructures-1.19.x-(v.4.0.4).jar |Additional Structures |additionalstructures |4.0.4 |COMMON_SET|Manifest: NOSIGNATURE bygonenether-1.3.2-1.19.2.jar |Bygone Nether |bygonenether |1.3.2 |COMMON_SET|Manifest: NOSIGNATURE Steam_Rails-1.6.4+forge-mc1.19.2.jar |Create: Steam 'n' Rails |railways |1.6.4+forge-mc1.19.2|COMMON_SET|Manifest: NOSIGNATURE FpsReducer2-forge-1.19.2-2.1.jar |FPS Reducer |fpsreducer |1.19.2-2.1 |COMMON_SET|Manifest: NOSIGNATURE ShieldExpansion-1.19.2-1.1.7a.jar |Shield Expansion |shieldexp |1.1.7a |COMMON_SET|Manifest: NOSIGNATURE cameraoverhaul-1.0-1.19.2.jar |Camera Overhaul |cameraoverhaul |1.0.0 |COMMON_SET|Manifest: NOSIGNATURE dummmmmmy-1.19.2-1.7.1.jar |MmmMmmMmmmmm |dummmmmmy |1.19.2-1.7.1 |COMMON_SET|Manifest: NOSIGNATURE twilightforest-1.19.2-4.2.1518-universal.jar |The Twilight Forest |twilightforest |4.2.1518 |COMMON_SET|Manifest: NOSIGNATURE konkrete_forge_1.8.0_MC_1.19-1.19.2.jar |Konkrete |konkrete |1.8.0 |COMMON_SET|Manifest: NOSIGNATURE adtetra-1.0.1.jar |Ad Tetra |adtetra |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE enemyexpansion-2.3.1-forge-1.19.2.jar |Enemy Expansion |enemyexpansion |2.3.1 |COMMON_SET|Manifest: NOSIGNATURE chipped-forge-1.19.2-2.1.5.jar |Chipped |chipped |2.1.5 |COMMON_SET|Manifest: NOSIGNATURE mcw-bridges-3.0.0-mc1.19.2forge.jar |Macaw's Bridges |mcwbridges |3.0.0 |COMMON_SET|Manifest: NOSIGNATURE FarmersDelight-1.19.2-1.2.4.jar |Farmer's Delight |farmersdelight |1.19.2-1.2.4 |COMMON_SET|Manifest: NOSIGNATURE culturaldelights-1.19.2-0.15.5.jar |Cultural Delights |culturaldelights |0.15.5 |COMMON_SET|Manifest: NOSIGNATURE endsdelight-1.19.2-1.2.1.jar |End's Delight |ends_delight |1.19.2-1.2.1 |COMMON_SET|Manifest: NOSIGNATURE customizableelytra-1.19.0-1.7.4.jar |Customizable Elytra |customizableelytra |1.19.0-1.7.4 |COMMON_SET|Manifest: NOSIGNATURE endrem_forge-5.2.1-R-1.19.X.jar |End Remastered |endrem |5.2.1-R-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE LetSleepingDogsLie-1.19.2-Forge-1.2.0.jar |Let Sleeping Dogs Lie |dogslie |1.2.0 |COMMON_SET|Manifest: NOSIGNATURE Chunky-1.3.38.jar |Chunky |chunky |1.3.38 |COMMON_SET|Manifest: NOSIGNATURE mcw-fences-1.1.1-mc1.19.2forge.jar |Macaw's Fences and Walls |mcwfences |1.1.1 |COMMON_SET|Manifest: NOSIGNATURE DiagonalWindows-v4.0.2-1.19.2-Forge.jar |Diagonal Windows |diagonalwindows |4.0.2 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a simplefarming-1.19.2-2.0.4.jar |Simple Farming |simplefarming |1.19.2-2.0.4 |COMMON_SET|Manifest: NOSIGNATURE dungeons_enhanced-1.19.2-4.1.jar |Dungeons Enhanced |dungeons_enhanced |4.1 |COMMON_SET|Manifest: NOSIGNATURE wthit-forge-5.26.0.jar |wthit |wthit |5.26.0 |COMMON_SET|Manifest: NOSIGNATURE modelfix-1.8.jar |Model Gap Fix |modelfix |1.8 |COMMON_SET|Manifest: NOSIGNATURE Patchouli-1.19.2-77.jar |Patchouli |patchouli |1.19.2-77 |COMMON_SET|Manifest: NOSIGNATURE The-Man-From-The-Fog-1.3-1.19.2.jar |The Man From The Fog |man |1.3 |COMMON_SET|Manifest: NOSIGNATURE cullleaves-forge-3.0.1.jar |CullLeaves |cullleaves |3.0.1 |COMMON_SET|Manifest: NOSIGNATURE midnightlib-1.0.0-forge.jar |MidnightLib |midnightlib |1.0.0 |COMMON_SET|Manifest: NOSIGNATURE collective-1.19.2-7.60.jar |Collective |collective |7.60 |COMMON_SET|Manifest: NOSIGNATURE BetterThirdPerson-Forge-1.19-1.9.0.jar |Better Third Person |betterthirdperson |1.9.0 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar |YUNG's Better Strongholds |betterstrongholds |1.19.2-Forge-3.2.0 |COMMON_SET|Manifest: NOSIGNATURE resourcefullib-forge-1.19.2-1.1.24.jar |Resourceful Lib |resourcefullib |1.1.24 |COMMON_SET|Manifest: NOSIGNATURE eatinganimation-1.19-3.2.0.jar |Eating Animation |eatinganimation |3.0.0 |COMMON_SET|Manifest: NOSIGNATURE forge-1.19.2-43.3.13-universal.jar |Forge |forge |43.3.13 |COMMON_SET|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 client-1.19.2-20220805.130853-srg.jar |Minecraft |minecraft |1.19.2 |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f cofh_core-1.19.2-10.3.1.48.jar |CoFH Core |cofh_core |10.3.1 |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09 commonality-1.19.2-4.2.1.jar |Commonality |commonality |4.2.1 |COMMON_SET|Manifest: NOSIGNATURE Zeta-1.0-16.jar |Zeta |zeta |1.0-16 |ERROR |Manifest: NOSIGNATURE appleskin-forge-mc1.19-2.4.2.jar |AppleSkin |appleskin |2.4.2+mc1.19 |COMMON_SET|Manifest: NOSIGNATURE Aquaculture-1.19.2-2.4.17.jar |Aquaculture 2 |aquaculture |1.19.2-2.4.17 |COMMON_SET|Manifest: NOSIGNATURE twilightdelight-1.4.4.jar |Twilight's Flavor & Delight |twilightdelight |1.4.4 |COMMON_SET|Manifest: NOSIGNATURE InventoryProfilesNext-forge-1.19-1.10.10.jar |Inventory Profiles Next |inventoryprofilesnext |1.10.10 |COMMON_SET|Manifest: NOSIGNATURE architectury-6.6.92-forge.jar |Architectury |architectury |6.6.92 |COMMON_SET|Manifest: NOSIGNATURE doapi-1.1.0b.jar |Lets Do Api |doapi |1.1.0b |COMMON_SET|Manifest: NOSIGNATURE letsdo-vinery-forge-1.3.12b.jar |Vinery |vinery |1.3.12 |COMMON_SET|Manifest: NOSIGNATURE letsdo-bakery-forge-1.0.6.jar |Bakery |bakery |1.0.6 |COMMON_SET|Manifest: NOSIGNATURE letsdo-beachparty-forge-1.0.12b.jar |Beachparty |beachparty |1.0.12 |COMMON_SET|Manifest: NOSIGNATURE cc-tweaked-1.19.2-1.101.4.jar |CC: Tweaked |computercraft |1.101.4 |COMMON_SET|Manifest: NOSIGNATURE cupboard-1.19.2-2.6.jar |Cupboard utilities |cupboard |1.19.2-2.6 |COMMON_SET|Manifest: NOSIGNATURE cherishedworlds-forge-6.0.5+1.19.4.jar |Cherished Worlds |cherishedworlds |6.0.5+1.19.4 |COMMON_SET|Manifest: NOSIGNATURE debugify-1.1.0-forge-1.19.2.jar |Debugify Reforged |debugify |1.1.0 |COMMON_SET|Manifest: NOSIGNATURE rubidium-extra-0.4.19+mc1.19.2-build.105.jar |Rubidium Extra |rubidium_extra |0.4.19+mc1.19.2-buil|COMMON_SET|Manifest: NOSIGNATURE framework-forge-1.19.2-0.6.16.jar |Framework |framework |0.6.16 |COMMON_SET|Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99 smallships-forge-1.19.2-2.0.0-b1.2.jar |Small Ships |smallships |2.0.0-b1.2 |COMMON_SET|Manifest: NOSIGNATURE infinitetrading-1.19.2-4.3.jar |Infinite Trading |infinitetrading |4.3 |COMMON_SET|Manifest: NOSIGNATURE Towns-and-Towers-v.1.10-_FORGE-1.19.2_.jar |Towns and Towers |t_and_t |1.10 |COMMON_SET|Manifest: NOSIGNATURE shulkerboxtooltip-forge-3.2.2+1.19.2.jar |ShulkerBoxTooltip |shulkerboxtooltip |3.2.2+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE effortlessbuilding-1.19.2-3.5-all.jar |Effortless Building |effortlessbuilding |3.5 |COMMON_SET|Manifest: NOSIGNATURE BetterAdvancements-1.19.2-0.2.2.142.jar |Better Advancements |betteradvancements |0.2.2.142 |COMMON_SET|Manifest: NOSIGNATURE Cucumber-1.19.2-6.0.10.jar |Cucumber Library |cucumber |6.0.10 |COMMON_SET|Manifest: NOSIGNATURE oculus-flywheel-compat-1.19.2-0.2.1.jar |Oculus Flywheel Compat |irisflw |1.19.2-0.2.1 |COMMON_SET|Manifest: NOSIGNATURE spiderstpo-1.19.2-2.0.4.jar |Nyf's Spiders 2.0 |spiderstpo |2.0.4 |COMMON_SET|Manifest: NOSIGNATURE EasyMagic-v4.3.3-1.19.2-Forge.jar |Easy Magic |easymagic |4.3.3 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a Structory_Towers_1.19.3_v1.0.2.jar |Structory: Towers |structorytowers |1.0.2 |COMMON_SET|Manifest: NOSIGNATURE InvMove-1.19-0.8.2-Forge.jar |InvMove |invmove |0.8.2 |COMMON_SET|Manifest: NOSIGNATURE create-1.19.2-0.5.1.f.jar |Create |create |0.5.1.f |COMMON_SET|Manifest: NOSIGNATURE createdeco-1.3.3-1.19.2.jar |Create Deco |createdeco |1.3.3-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE creategoggles-1.19.2-0.5.5.g-[FORGE].jar |Create Goggles |creategoggles |0.5.5.g |COMMON_SET|Manifest: NOSIGNATURE Delightful-1.19.2-3.4.1.jar |Delightful |delightful |3.4.1 |COMMON_SET|Manifest: NOSIGNATURE interiors-0.5.3+forge-mc1.19.2.jar |Create: Interiors |interiors |0.5.3 |COMMON_SET|Manifest: NOSIGNATURE createastracompat-1.0.3-1.19.2.jar |Create Ad Astra Compat |createastracompat |1.0.3-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE Structory_1.19.3_v1.3.1a.jar |Structory |structory |1.3.1a |COMMON_SET|Manifest: NOSIGNATURE mcw-paintings-1.0.5-1.19.2forge.jar |Macaw's Paintings |mcwpaintings |1.0.5 |COMMON_SET|Manifest: NOSIGNATURE FastSuite-1.19.2-4.1.1.jar |Fast Suite |fastsuite |4.1.1 |COMMON_SET|Manifest: NOSIGNATURE Clumps-forge-1.19.2-9.0.0+14.jar |Clumps |clumps |9.0.0+14 |COMMON_SET|Manifest: NOSIGNATURE artifacts-1.19.2-5.0.5.jar |Artifacts |artifacts |1.19.2-5.0.5 |COMMON_SET|Manifest: NOSIGNATURE capes-1.5.2+1.19.2-forge.jar |Capes |capes |1.5.2+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE Decorative Blocks-forge-1.19.2-3.0.0.jar |Decorative Blocks |decorative_blocks |3.0.0 |COMMON_SET|Manifest: NOSIGNATURE DungeonCrawl-1.19-2.3.12.jar |Dungeon Crawl |dungeoncrawl |2.3.12 |COMMON_SET|Manifest: NOSIGNATURE create-confectionery1.19.2_v1.0.9.jar |Create Confectionery |create_confectionery |1.0.9 |COMMON_SET|Manifest: NOSIGNATURE lazydfu-1.19-1.0.2.jar |LazyDFU |lazydfu |0.1.3 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterDesertTemples-1.19.2-Forge-2.2.2.jar |YUNG's Better Desert Temples |betterdeserttemples |1.19.2-Forge-2.2.2 |COMMON_SET|Manifest: NOSIGNATURE waveycapes-forge-1.4.7-mc1.19.2.jar |WaveyCapes |waveycapes |1.4.7 |COMMON_SET|Manifest: NOSIGNATURE DistantHorizons-2.0.1-a-1.19.2.jar |Distant Horizons |distanthorizons |2.0.1-a |COMMON_SET|Manifest: NOSIGNATURE blueprint-1.19.2-6.2.0.jar |Blueprint |blueprint |6.2.0 |COMMON_SET|Manifest: NOSIGNATURE upgrade_aquatic-1.19.2-5.1.0.jar |Upgrade Aquatic |upgrade_aquatic |5.1.0 |COMMON_SET|Manifest: NOSIGNATURE personality-1.19.2-3.0.2.jar |Personality |personality |3.0.2 |COMMON_SET|Manifest: NOSIGNATURE create_central_kitchen-1.19.2-for-create-0.5.1.f-1|Create: Central Kitchen |create_central_kitchen |1.3.11.c |COMMON_SET|Manifest: NOSIGNATURE watut-forge-1.19.2-1.0.14.jar |What Are They Up To |watut |1.19.2-1.0.14 |COMMON_SET|Manifest: NOSIGNATURE skinlayers3d-forge-1.6.5-mc1.19.2.jar |3d-Skin-Layers |skinlayers3d |1.6.5 |COMMON_SET|Manifest: NOSIGNATURE TravelersTitles-1.19.2-Forge-3.1.2.jar |Traveler's Titles |travelerstitles |1.19.2-Forge-3.1.2 |COMMON_SET|Manifest: NOSIGNATURE friendsandfoes-forge-mc1.19.2-2.0.10.jar |Friends&Foes |friendsandfoes |2.0.10 |COMMON_SET|Manifest: NOSIGNATURE MysticalAgriculture-1.19.2-6.0.14.jar |Mystical Agriculture |mysticalagriculture |6.0.14 |COMMON_SET|Manifest: NOSIGNATURE MysticalAgradditions-1.19.2-6.0.4.jar |Mystical Agradditions |mysticalagradditions |6.0.4 |COMMON_SET|Manifest: NOSIGNATURE okzoomer-forge-1.19-2.1.1.jar |OkZoomer |okzoomer |2.1.1 |COMMON_SET|Manifest: NOSIGNATURE simplyswords-forge-1.47.0-1.19.2.jar |Simply Swords |simplyswords |1.47.0-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE libIPN-forge-1.19-4.0.2.jar |libIPN |libipn |4.0.2 |COMMON_SET|Manifest: NOSIGNATURE EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar |EnchantmentDescriptions |enchdesc |13.0.14 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 swingthroughgrass-1.19.2-1.10.0.jar |SwingThroughGrass |swingthroughgrass |1.19.2-1.10.0 |COMMON_SET|Manifest: NOSIGNATURE moonlight-1.19.2-2.3.6-forge.jar |Moonlight Library |moonlight |1.19.2-2.3.6 |COMMON_SET|Manifest: NOSIGNATURE smarterfarmers-1.19.2-1.7.1.jar |Smarter Farmers |smarterfarmers |1.19.2-1.7.1 |COMMON_SET|Manifest: NOSIGNATURE another_furniture-forge-1.19.2-2.1.4.jar |Another Furniture |another_furniture |1.19.2-2.1.4 |COMMON_SET|Manifest: NOSIGNATURE CreativeCore_FORGE_v2.9.4_mc1.19.2.jar |CreativeCore |creativecore |2.9.3 |COMMON_SET|Manifest: NOSIGNATURE smoothboot(reloaded)-mc1.19.2-0.0.4.jar |Smooth Boot (Reloaded) |smoothboot |0.0.4 |COMMON_SET|Manifest: NOSIGNATURE NethersDelight-1.19-3.1.jar |Nether's Delight |nethersdelight |1.19-3.1 |COMMON_SET|Manifest: NOSIGNATURE betterstats-2.2.2+1.19.2.jar |Better Statistics Screen |betterstats |2.2.2+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE tcdcommons-2.2+1.19.2.jar |TCD Commons API |tcdcommons |2.2+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE plushies-1.2-1.19.2.jar |Plushie Mod |plushies |1.2 |COMMON_SET|Manifest: NOSIGNATURE Iceberg-1.19.2-forge-1.1.4.jar |Iceberg |iceberg |1.1.4 |COMMON_SET|Manifest: NOSIGNATURE Quark-3.4-418.jar |Quark |quark |3.4-418 |COMMON_SET|Manifest: NOSIGNATURE supplementaries-1.19.2-2.4.20.jar |Supplementaries |supplementaries |1.19.2-2.4.20 |COMMON_SET|Manifest: NOSIGNATURE mutil-1.19.2-5.2.0.jar |mutil |mutil |5.2.0 |COMMON_SET|Manifest: NOSIGNATURE LegendaryTooltips-1.19.2-forge-1.4.0.jar |Legendary Tooltips |legendarytooltips |1.4.0 |COMMON_SET|Manifest: NOSIGNATURE create-stuff-additions1.19.2_v2.0.4a.jar |Create Stuff & Additions |create_sa |2.0.4. |COMMON_SET|Manifest: NOSIGNATURE FastWorkbench-1.19.2-7.1.4.jar |Fast Workbench |fastbench |7.1.4 |COMMON_SET|Manifest: NOSIGNATURE StorageDrawers-1.19-11.1.2.jar |Storage Drawers |storagedrawers |11.1.2 |COMMON_SET|Manifest: NOSIGNATURE irons_spellbooks-1.19.2-3.1.6.jar |Iron's Spells 'n Spellbooks |irons_spellbooks |1.19.2-3.1.6 |COMMON_SET|Manifest: NOSIGNATURE DiagonalFences-v4.2.6-1.19.2-Forge.jar |Diagonal Fences |diagonalfences |4.2.6 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a ToughAsNails-1.19-8.0.0.78.jar |Tough As Nails |toughasnails |0.0NONE |COMMON_SET|Manifest: NOSIGNATURE invhud.forge.1.19-3.4.7.jar |Inventory HUD+(Forge edition) |inventoryhud |3.4.7 |COMMON_SET|Manifest: NOSIGNATURE upgradedcore-1.19.2-4.1.0.1-release.jar |Upgraded Core |upgradedcore |1.19.2-4.1.0.1-relea|COMMON_SET|Manifest: NOSIGNATURE coroutil-forge-1.19.2-1.3.6.jar |CoroUtil |coroutil |1.19.2-1.3.6 |COMMON_SET|Manifest: NOSIGNATURE automobility-0.4.2+1.19.2-forge.jar |Automobility |automobility |0.4.2+1.19.2-forge |COMMON_SET|Manifest: NOSIGNATURE alexsdelight-1.4.1.jar |Alex's Delight |alexsdelight |1.4.1 |COMMON_SET|Manifest: NOSIGNATURE ferritecore-5.0.3-forge.jar |Ferrite Core |ferritecore |5.0.3 |COMMON_SET|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 fastfooddelight-1.19-1.2.4.jar |FastFood Delight |fastfooddelight |1.19-1.2.4 |COMMON_SET|Manifest: NOSIGNATURE apexcore-1.19.2-7.3.1.jar |ApexCore |apexcore |7.3.1 |COMMON_SET|Manifest: NOSIGNATURE fantasyfurniture-1.19.2-6.7.0.jar |Fantasy's Furniture |fantasyfurniture |6.7.0 |COMMON_SET|Manifest: NOSIGNATURE Enhanced_Celestials-forge-1.19.2-2.1.0.6.jar |Enhanced Celestials |enhancedcelestials |2.1.0.6 |COMMON_SET|Manifest: NOSIGNATURE CorgiLib-forge-1.19.2-1.0.0.34.jar |CorgiLib |corgilib |1.0.0.34 |COMMON_SET|Manifest: NOSIGNATURE charmofundying-forge-6.2.1+1.19.2.jar |Charm of Undying |charmofundying |6.2.1+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE BetterF3-4.0.1-Forge-1.19.2.jar |BetterF3 |betterf3 |4.0.1 |COMMON_SET|Manifest: NOSIGNATURE expandability-forge-7.0.0.jar |ExpandAbility |expandability |7.0.0 |COMMON_SET|Manifest: NOSIGNATURE create_enchantment_industry-1.19.2-for-create-0.5.|Create Enchantment Industry |create_enchantment_industry |1.2.9.e |COMMON_SET|Manifest: NOSIGNATURE drinkbeer-refill-1.19.2-1.0.3.jar |Drink Beer Refill |drinkbeer |1.0.3 |COMMON_SET|Manifest: NOSIGNATURE createaddition-1.19.2-1.2.3.jar |Create Crafts & Additions |createaddition |1.19.2-1.2.3 |COMMON_SET|Manifest: NOSIGNATURE PresenceFootsteps-1.19.2-1.6.4.1-forge.jar |Presence Footsteps (Forge) |presencefootsteps |1.19.2-1.6.4.1 |COMMON_SET|Manifest: NOSIGNATURE FramedBlocks BlockEntity Warning: Not applicable Flywheel Backend: GL33 Instanced Arrays Crash Report UUID: dec02351-9487-46d2-bc67-a2a2693eb2d5 FML: 43.3 Forge: net.minecraftforge:43.3.13
  1. Load more activity
×
×
  • Create New...

Important Information

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