Jump to content

[1.7.10] Tile Entity Special Renderer Renders Model Too Dark


yoshiquest

Recommended Posts

Ok, I'm stumped now. For some odd reason, the lighting doesn't seem to apply property to my model, making the bright yellow color I'm using to test it a dark, puke-yellow color. Before you ask, yes I made sure that isOpaqueCube returns false, and I also tried using the Tessellator to fix it with no results.

 

Here's the code for those that can actually read Clojure code (or willing to interpret it):

 

 

 

 

Code Generator Code:

 

(defn model-renderer [^ModelBase base property-map]

  (let [texture-offset (get property-map :texture-offset {})

        renderer (ModelRenderer. base (int (get texture-offset :x 0)) (int (get texture-offset :y 0)))

        box (get property-map :box {})

        rotation-point (get property-map :rotation-point {})

        texture-size (get property-map :texture-size {})

        mirror? (get property-map :mirror? false)

        rotation (get property-map :rotation {})

        renderer (doto renderer

                  (.addBox (float (get box :x 0)) (float (get box :y 0)) (float (get box :y 0)) (int (get box :width 1)) (int (get box :height 1)) (int (get box :depth 1)))

                  (.setRotationPoint (float (get rotation-point :x 0)) (float (get rotation-point :y 0)) (float (get rotation-point :z 0)))

                  (.setTextureSize (int (get texture-size :x 16)) (int (get texture-size :y 16)))

                  (#(set! (.-mirror ^ModelRenderer %1) mirror?))

                  (#(set! (.-rotateAngleX ^ModelRenderer %1) (float (get rotation :x 0))))

                  (#(set! (.-rotateAngleY ^ModelRenderer %1) (float (get rotation :y 0))))

                  (#(set! (.-rotateAngleZ ^ModelRenderer %1) (float (get rotation :z 0)))))]

    renderer))

 

(defn render-renderer [^ModelRenderer renderer f]

  (.render renderer f))

 

(defmacro defmodel [name-ns class-name & args]

  (let [classdata (apply hash-map args)

        classdata (assoc classdata :fields (get classdata :renderers (get classdata :fields {})))

        classdata (assoc-in classdata [:expose 'render] 'superRender)

        classdata (dissoc classdata :renderers)

        prefix (str class-name "-")

        fullname (symbol (str (string/replace name-ns #"-" "_") "." (gen-classname class-name)))

        this-sym (with-meta 'this {:tag fullname})]

    `(do

      (defassocclass ModelBase ~name-ns ~class-name ~classdata)

      (defn ~(symbol (str prefix "render")) [~'this ~'entity ~'f ~'f1 ~'f2 ~'f3 ~'f4 ~'f5]

        (~'.superRender ~this-sym ~'entity ~'f ~'f1 ~'f2 ~'f3 ~'f4 ~'f5)

        (doall (map #(render-renderer %1 ~'f5) (map (partial model-renderer ~this-sym) (vals (deref (~'.-data ~this-sym))))))))))

 

(defn resource-location [location]

  (ResourceLocation. (str location)))

 

(defn bind-texture [texture-location]

  (let [resource (resource-location (str texture-location))]

    (.bindTexture ^net.minecraft.client.renderer.texture.TextureManager (.getTextureManager ^Minecraft (Minecraft/getMinecraft)) resource)))

 

(defn fix-lighting [^World world x y z]

  (let [tessellator Tessellator/instance

        ^Block block (.getBlock world x y z)

        brightness (.getMixedBrightnessForBlock block world x y z)]

    (.setBrightness tessellator brightness)

    (.setColorOpaque_F tessellator (float 1.0) (float 1.0) (float 1.0))))

 

(defmacro deftilerenderer [renderer-name model & options]

  (let [options (apply hash-map options)

        texture (:texture options)

        render-args (:render-args options)

        color (get options :color {})

        options (dissoc options :texture :render-args :color)

        render-tile-entity-at `(fn [~'entity ~'x ~'y ~'z ~'f]

                                (GL11/glPushMatrix)

                                (GL11/glTranslated ~'x ~'y ~'z)

                                ~(if texture

                                    `(bind-texture ~texture)

                                    `(GL11/glDisable GL11/GL_TEXTURE_2D))

                                (GL11/glColor3f (float (get ~color :r 1)) (float (get ~color :g 1)) (float (get ~color :b 1)))

                                (fix-lighting (.getWorldObj ~(with-meta 'entity `{:tag TileEntity})) ~'x ~'y ~'z)

                                (~'.render ~(with-meta model `{:tag net.minecraft.client.model.ModelBase}) nil 0 0 -0.1 0 0 0.0625)

                                ~(if (not texture)

                                    `(GL11/glEnable GL11/GL_TEXTURE_2D))

                                (GL11/glPopMatrix))

        options (if (not (get-in options [:override :render-tile-entity-at]))

                  (assoc-in options [:override :render-tile-entity-at] render-tile-entity-at)

                  options)]

    `(defobj TileEntitySpecialRenderer [] ~renderer-name ~options)))

 

Sample User Code:

 

(deftileentity yoshiquest.testmod.tileentities render-block-entity)

 

(defn new-render-block-entity [& args]

  (.newInstance ^Class render-block-entity))

 

(defblock render-block

  :block-name "render-block"

  :container? true

  :override {:create-new-tile-entity new-render-block-entity

            :is-opaque-cube (constantly false)

            :render-as-normal-block (constantly false)

            :get-render-type (constantly -1)}

  :hardness 0.5

  :step-sound Block/soundTypeStone

  :creative-tab CreativeTabs/tabBlock

  :block-texture-name "test-mod:render-block")

 

(defmodel yoshiquest.testmod render-block-model

  :renderers {:simple-render {:box {:x 0 :y 0 :z 0 :width 16 :height 16 :depth 16}}})

 

(def model-instance (.newInstance ^Class render-block-model))

 

(deftilerenderer render-block-renderer model-instance :texture "test-mod:textures/blocks/multiblock_4.png")

 

Sample Generated Code (for the TileEntitySpecialRenderer, also you might wanna copy-paste it to somewhere with more room):

 

(def render-block-renderer

  (forge-clj.core/genobj net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer [] {:override {:render-tile-entity-at (clojure.core/fn [entity x y z f]

                                                                                                                                                  (org.lwjgl.opengl.GL11/glPushMatrix)

                                                                                                                                                  (org.lwjgl.opengl.GL11/glTranslated x y z)

                                                                                                                                                  (forge-clj.core/bind-texture test-mod:textures/blocks/multiblock_4.png)

                                                                                                                                                  (org.lwjgl.opengl.GL11/glColor3f (clojure.core/float (clojure.core/get {} :r 1)) (clojure.core/float (clojure.core/get {} :g 1)) (clojure.core/float (clojure.core/get {} :b 1)))

                                                                                                                                                  (forge-clj.core/fix-lighting (.getWorldObj entity) x y z)

                                                                                                                                                  (.render model-instance nil 0 0 -0.1 0 0 0.0625)

                                                                                                                                                  nil

                                                                                                                                                  (org.lwjgl.opengl.GL11/glPopMatrix))}}))

 

 

Currently working on a mod to provide support for the Clojure programming language in Minecraft, check it out here.

Link to comment
Share on other sites

Ok, since it's been a day and no one has replied to this yet, I thought I'd translate my renderTileEntityAt method into java real quick. Note that this is more or less pseudocode, it's not actually written this way (aka I won't include the type stuff):

 

 

 

public void renderTileEntityAt (x, y, z)

{

      GL11.pushMatrix();

      GL11.translated(x, y, z);

      forge_clj.bindTexture("test-mod:textures/blocks/multiblock_4.png");//function I made to bind the texture string location.

      GL11/glColor3f(1F, 1F, 1F);                                                                                                                   

      //here I used to call a function to fix lighting, it didn't work so I removed the call in this pseudocode. It's the same code found

      //in the adjustLightFixture method

      //here

 

      //This line renders the model. Not entirely sure what the numbers mean.

    modelInstance.render(null, 0, 0, -0.1, 0, 0, 0.0625);

    GL11.popMatrix();

 

 

 

And that's it. Now someone please help me figure this out, I have no idea what the heck is wrong.

Currently working on a mod to provide support for the Clojure programming language in Minecraft, check it out here.

Link to comment
Share on other sites

You appear to be getting only sky light. My renderer has this in its fixLightLevel method:

 

    int l = this.renderManager.worldObj.getCombinedLight (new BlockPos (i, j, k), 0);
    int i1 = l % 65536;
    int j1 = l / 65536;
    OpenGlHelper.setLightmapTextureCoords (OpenGlHelper.lightmapTexUnit, (float) i1, (float) j1);
    GL11.glColor3f (1.0F, 1.0F, 1.0F);

 

"Combined" light works for me.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

You appear to be getting only sky light. My renderer has this in its fixLightLevel method:

 

    int l = this.renderManager.worldObj.getCombinedLight (new BlockPos (i, j, k), 0);
    int i1 = l % 65536;
    int j1 = l / 65536;
    OpenGlHelper.setLightmapTextureCoords (OpenGlHelper.lightmapTexUnit, (float) i1, (float) j1);
    GL11.glColor3f (1.0F, 1.0F, 1.0F);

 

"Combined" light works for me.

 

I'm using 1.7.10, not 1.8, so getCombinedLight and BlockPos aren't defined. What's the equivalent call in 1.7.10?

Currently working on a mod to provide support for the Clojure programming language in Minecraft, check it out here.

Link to comment
Share on other sites

Ok, I think I found something.

 

Looking at some of minecraft's rendering methods, they seem to use getLightBrightnessForSkyBlocks(). Originally, I was calling it with the wrong coordinates. However, even after I fixed this bug and the proper coordinates print out, getLightBrightnessForSkyBlocks() still constantly returns 0 every time. Any ideas?

 

EDIT: I've tested it with multiple values. The X, Y, and Z values seem to be correct, or at least it is the same as the coordinates in the f3 screen. The 4th argument seems to be the block light in this instance. If artificially set higher, the texture suddenly becomes normal due to actually receiving light. However, getLightValue at that location also returns 0. Maybe my coordinates or actually off, or something is wrong with the client world?

Currently working on a mod to provide support for the Clojure programming language in Minecraft, check it out here.

Link to comment
Share on other sites

Ok, I finally figured it out, and it was stupidity on my part.

 

In the first post I did say that I had overriden isOpaqueCube, right? Well, as it turns out, the thing that determines opacity is when the Block class's constructer is invoked, by calling isOpaqueCube and setting lightOpacity to 255 if true or 0 if false.

 

So apparantly, with the way I implemented clojure java inter-op things, the constructor was called FIRST, BEFORE the new overrides were created. Because of that, even though the methods were overriden, and isOpaqueCube did return false, this happened after the constructor was called, and lightOpacity was already set to 255.

 

So yeah, I solved it. That was kinda stupid though.

Currently working on a mod to provide support for the Clojure programming language in Minecraft, check it out here.

Link to comment
Share on other sites

"Combined" light works for me.

 

I'm using 1.7.10, not 1.8, so getCombinedLight and BlockPos aren't defined. What's the equivalent call in 1.7.10?

Ooops, sorry I forgot about version difference. Hold my suggestion for when you make your v1.8 edition of your mod. Glad you found your execution order bug and could fix it.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Something is taking too long on the server thread.   The only clue in what you post is something trying to force load chunks using a command: Which might not be cause, it is just what is running when the 60 second timeout happened.   I suggest you speak to the dawncraft modpack authors.
    • Issue with your graphics driver. Try this: https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788 Otherwise contact AMD
    • Actually @warjort here is the whole Log, I hope you can help me.  
    • Playing a pack I put together myself. I'm a novice at Java. About 10-20 mins after creating a new world I always get this crash, what mod is causing it? Thank you. ---- Minecraft Crash Report ---- // Uh... Did I do that? Time: 2023-03-29 11:42:03 EDT Description: Exception ticking world java.lang.IllegalArgumentException: Cannot get property PropertyEnum{name=variant, clazz=class net.minecraft.block.BlockPlanks$EnumType, values=[oak, spruce, birch, jungle]} as it does not exist in BlockStateContainer{block=minecraft:air, properties=[]}     at net.minecraft.block.state.BlockStateContainer$StateImplementation.func_177229_b(BlockStateContainer.java:209)     at net.minecraft.block.BlockOldLeaf.func_176232_d(BlockOldLeaf.java:45)     at net.minecraft.block.BlockLeaves.getDrops(BlockLeaves.java:261)     at net.minecraft.block.Block.getDrops(Block.java:1300)     at net.minecraft.block.Block.func_180653_a(Block.java:571)     at net.minecraft.block.BlockLeaves.func_180653_a(BlockLeaves.java:209)     at net.minecraft.block.Block.func_176226_b(Block.java:564)     at net.minecraft.block.BlockLeaves.func_176235_d(BlockLeaves.java:181)     at net.minecraft.block.BlockLeaves.func_180650_b(BlockLeaves.java:173)     at net.minecraft.block.Block.func_180645_a(Block.java:508)     at net.minecraft.world.WorldServer.func_147456_g(WorldServer.java:476)     at net.minecraft.world.WorldServer.func_72835_b(WorldServer.java:225)     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:756)     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668)     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:279)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)     at java.lang.Thread.run(Thread.java:745) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Affected level --   Level name: New World   All players: 1 total; [EntityPlayerMP['Cercyon_Chronos'/513, l='New World', x=-344.25, y=98.23, z=-161.53]]   Chunk stats: ServerChunkCache: 669 Drop: 0   Level seed: 2973646654614874606   Level generator: ID 00 - default, ver 1. Features enabled: true   Level generator options:   Level spawn location: World: (-48,64,252), Chunk: (at 0,4,12 in -3,15; contains blocks -48,0,240 to -33,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)   Level time: 23612 game time, 23612 day time   Level dimension: 0   Level storage version: 0x04ABD - Anvil   Level weather: Rain time: 44738 (now: false), thunder time: 103425 (now: false)   Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: true -- System Details --   Minecraft Version: 1.12.2   Operating System: Windows 10 (amd64) version 10.0   Java Version: 1.8.0_51, Oracle Corporation   Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation   Memory: 411748312 bytes (392 MB) / 8998879232 bytes (8582 MB) up to 8998879232 bytes (8582 MB)   JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx9024m -Xms256m   IntCache: cache: 14, tcache: 94, allocated: 0, tallocated: 0   FML: MCP 9.42 Powered by Forge 14.23.5.2860 Optifine OptiFine_1.12.2_HD_U_G5 332 mods loaded, 330 mods active        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored                | State  | ID                                | Version                   | Source                                                    | Signature                                |        |:------ |:--------------------------------- |:------------------------- |:--------------------------------------------------------- |:---------------------------------------- |        | LCHIJA | minecraft                         | 1.12.2                    | minecraft.jar                                             | None                                     |        | LCHIJA | mcp                               | 9.42                      | minecraft.jar                                             | None                                     |        | LCHIJA | FML                               | 8.0.99.99                 | forge-1.12.2-14.23.5.2860.jar                             | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | forge                             | 14.23.5.2860              | forge-1.12.2-14.23.5.2860.jar                             | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | creativecoredummy                 | 1.0.0                     | minecraft.jar                                             | None                                     |        | LCHIJA | ivtoolkit                         | 1.3.3-1.12                | minecraft.jar                                             | None                                     |        | LCHIJA | mixinbooter                       | 7.1                       | minecraft.jar                                             | None                                     |        | LCHIJA | openmodscore                      | 0.12.2                    | minecraft.jar                                             | None                                     |        | LCHIJA | foamfixcore                       | 7.7.4                     | minecraft.jar                                             | None                                     |        | LCHIJA | obfuscate                         | 0.4.2                     | minecraft.jar                                             | None                                     |        | LCHIJA | opencomputers|core                | 1.7.7+5413028             | minecraft.jar                                             | None                                     |        | LCHIJA | srm-hooks                         | 1.12.2-1.0.0              | minecraft.jar                                             | None                                     |        | LCHIJA | bspkrscore                        | 7.6.0.1                   | [1.12]bspkrsCore-universal-7.6.0.1.jar                    | None                                     |        | LCHIJA | treecapitator                     | 1.43.0                    | [1.12]TreeCapitator-client-1.43.0.jar                     | None                                     |        | LCHIJA | forgelin                          | 1.8.4                     | Forgelin-1.8.4.jar                                        | None                                     |        | LCHIJA | alib                              | 1.0.12                    | alib-1.0.12.jar                                           | None                                     |        | LCHIJA | crafttweaker                      | 4.1.20                    | CraftTweaker2-1.12-4.1.20.687.jar                         | None                                     |        | LCHIJA | alchemistry                       | 1.12.2-42                 | alchemistry-1.12.2-42.jar                                 | None                                     |        | LCHIJA | mtlib                             | 3.0.7                     | MTLib-3.0.7.jar                                           | None                                     |        | LCHIJA | modtweaker                        | 4.0.19                    | modtweaker-4.0.20.11.jar                                  | None                                     |        | LCHIJA | jei                               | 4.16.1.301                | jei_1.12.2-4.16.1.301.jar                                 | None                                     |        | LCHIJA | abyssalcraft                      | 1.10.4                    | AbyssalCraft-1.12.2-1.10.4.jar                            | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | ctm                               | MC1.12.2-1.0.2.31         | CTM-MC1.12.2-1.0.2.31.jar                                 | None                                     |        | LCHIJA | roots                             | @VERSION@                 | Roots-1.12.2-3.1.7.jar                                    | None                                     |        | LCHIJA | mysticalworld                     | 1.12.2-1.11.0             | mysticalworld-1.12.2-1.11.0.jar                           | None                                     |        | LCHIJA | chisel                            | MC1.12.2-1.0.2.45         | Chisel-MC1.12.2-1.0.2.45.jar                              | None                                     |        | LCHIJA | baubles                           | 1.5.2                     | Baubles-1.12-1.5.2.jar                                    | None                                     |        | LCHIJA | endercore                         | 1.12.2-0.5.76             | EnderCore-1.12.2-0.5.76.jar                               | None                                     |        | LCHIJA | thaumcraft                        | 6.1.BETA26                | Thaumcraft-1.12.2-6.1.BETA26.jar                          | None                                     |        | LCHIJA | codechickenlib                    | 3.2.3.358                 | CodeChickenLib-1.12.2-3.2.3.358-universal.jar             | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | redstoneflux                      | 2.1.1                     | RedstoneFlux-1.12-2.1.1.1-universal.jar                   | None                                     |        | LCHIJA | cofhcore                          | 4.6.6                     | CoFHCore-1.12.2-4.6.6.1-universal.jar                     | None                                     |        | LCHIJA | brandonscore                      | 2.4.20                    | BrandonsCore-1.12.2-2.4.20.162-universal.jar              | None                                     |        | LCHIJA | cofhworld                         | 1.4.0                     | CoFHWorld-1.12.2-1.4.0.1-universal.jar                    | None                                     |        | LCHIJA | thermalfoundation                 | 2.6.7                     | ThermalFoundation-1.12.2-2.6.7.1-universal.jar            | None                                     |        | LCHIJA | draconicevolution                 | 2.3.28                    | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar        | None                                     |        | LCHIJA | thermalexpansion                  | 5.5.7                     | ThermalExpansion-1.12.2-5.5.7.1-universal.jar             | None                                     |        | LCHIJA | tombstone                         | 4.6.2                     | tombstone-4.6.2-1.12.2.jar                                | None                                     |        | LCHIJA | enderio                           | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiointegrationtic             | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | mantle                            | 1.12-1.3.3.55             | Mantle-1.12-1.3.3.55.jar                                  | None                                     |        | LCHIJA | twilightforest                    | 3.11.1021                 | twilightforest-1.12.2-3.11.1021-universal.jar             | None                                     |        | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183         | TConstruct-1.12.2-2.13.0.183.jar                          | None                                     |        | LCHIJA | acintegration                     | 1.11.3                    | AbyssalCraft Integration-1.12.2-1.11.3.jar                | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | ic2                               | 2.8.222-ex112             | industrialcraft-2-2.8.222-ex112.jar                       | de041f9f6187debbc77034a344134053277aa3b0 |        | LCHIJA | engineersdecor                    | 1.1.5                     | engineersdecor-1.12.2-1.1.5.jar                           | ed58ed655893ced6280650866985abcae2bf7559 |        | LCHIJA | engineerstools                    | 1.0.5                     | engineerstools-1.12.2-1.0.5.jar                           | None                                     |        | LCHIJA | immersiveengineering              | 0.12-98                   | ImmersiveEngineering-0.12-98.jar                          | None                                     |        | LCHIJA | libvulpes                         | 0.4.2.-25                 | LibVulpes-1.12.2-0.4.2-25-universal.jar                   | None                                     |        | LCHIJA | advancedrocketry                  | 1.12.2-2.0.0-13           | AdvancedRocketry-1.12.2-2.0.0-13.jar                      | None                                     |        | LCHIJA | appliedenergistics2               | rv6-stable-7              | appliedenergistics2-rv6-stable-7.jar                      | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |        | LCHIJA | bdlib                             | 1.14.3.12                 | bdlib-1.14.3.12-mc1.12.2.jar                              | None                                     |        | LCHIJA | ae2stuff                          | 0.7.0.4                   | ae2stuff-0.7.0.4-mc1.12.2.jar                             | None                                     |        | LCHIJA | orbis-lib                         | 0.2.0                     | orbis-lib-1.12.2-0.2.0+build411.jar                       | db341c083b1b8ce9160a769b569ef6737b3f4cdf |        | LCHIJA | aether                            | 0.3.0                     | aether_ii-1.12.2-0.3.0+build411-universal.jar             | db341c083b1b8ce9160a769b569ef6737b3f4cdf |        | LCHIJA | aiimprovements                    | 0.0.1.3                   | AIImprovements-1.12-0.0.1b3.jar                           | None                                     |        | LCHIJA | akashictome                       | 1.2-12                    | AkashicTome-1.2-12.jar                                    | None                                     |        | LCHIJA | creativecore                      | 1.10.0                    | CreativeCore_v1.10.70_mc1.12.2.jar                        | None                                     |        | LCHIJA | ambientsounds                     | 3.0                       | AmbientSounds_v3.1.7_mc1.12.2.jar                         | None                                     |        | LCHIJA | guideapi                          | 1.12-2.1.8-63             | Guide-API-1.12-2.1.8-63.jar                               | None                                     |        | LCHIJA | bloodmagic                        | 1.12.2-2.4.3-105          | BloodMagic-1.12.2-2.4.3-105.jar                           | None                                     |        | LCHIJA | animus                            | 1                         | Animus-1.12-2.1.7.jar                                     | None                                     |        | LCHIJA | applecore                         | 3.4.0                     | AppleCore-mc1.12.2-3.4.0.jar                              | None                                     |        | LCHIJA | appleskin                         | 1.0.14                    | AppleSkin-mc1.12-1.0.14.jar                               | None                                     |        | LCHIJA | base                              | 3.14.0                    | base-1.12.2-3.14.0.jar                                    | None                                     |        | LCHIJA | contenttweaker                    | 1.12.2-4.10.0             | ContentTweaker-1.12.2-4.10.0.jar                          | None                                     |        | LCHIJA | conarm                            | 1.2.5.10                  | conarm-1.12.2-1.2.5.10.jar                                | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |        | LCHIJA | armoryexpansion                   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | armoryexpansion-custommaterials   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | armoryexpansion-iceandfire        | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | matteroverdrive                   | 0.7.0.0                   | MatterOverdrive-1.12.2-0.7.1.0-universal.jar              | None                                     |        | LCHIJA | armoryexpansion-matteroverdrive   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | astralsorcery                     | 1.10.27                   | astralsorcery-1.12.2-1.10.27.jar                          | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |        | LCHIJA | attributefix                      | 1.0.12                    | AttributeFix-Forge-1.12.2-1.0.12.jar                      | None                                     |        | LCHIJA | autoreglib                        | 1.3-32                    | AutoRegLib-1.3-32.jar                                     | None                                     |        | LCHIJA | avaritia                          | 3.3.0                     | Avaritia-1.12.2-3.3.0.37-universal.jar                    | None                                     |        | LCHIJA | ichunutil                         | 7.2.2                     | iChunUtil-1.12.2-7.2.2.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | backtools                         | 7.0.1                     | BackTools-1.12.2-7.0.1.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | betterbiomeblend                  | 1.12.2-1.1.7-forge        | betterbiomeblend-1.12.2-1.1.7-forge.jar                   | None                                     |        | LCHIJA | bettercaves                       | 1.12.2                    | bettercaves-1.12.2-2.0.4.jar                              | None                                     |        | LCHIJA | bettermineshafts                  | 1.12.2-2.2.1              | BetterMineshaftsForge-1.12.2-2.2.1.jar                    | None                                     |        | LCHIJA | botania                           | r1.10-364                 | Botania r1.10-364.4.jar                                   | None                                     |        | LCHIJA | llibrary                          | 1.7.20                    | llibrary-1.7.20-1.12.2.jar                                | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |        | LCHIJA | mowziesmobs                       | 1.5.8                     | mowziesmobs-1.5.8.jar                                     | None                                     |        | LCHIJA | patchouli                         | 1.0-23.6                  | Patchouli-1.0-23.6.jar                                    | None                                     |        | LCHIJA | bewitchment                       | 0.22.63                   | bewitchment-1.12.2-0.0.22.64.jar                          | None                                     |        | LCHIJA | bibliocraft                       | 2.4.6                     | BiblioCraft[v2.4.6][MC1.12.2].jar                         | None                                     |        | LCHIJA | biomesoplenty                     | 7.0.1.2445                | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar             | None                                     |        | LCHIJA | bloodarsenal                      | 1.12.2-2.2.2-31           | BloodArsenal-1.12.2-2.2.2-31.jar                          | None                                     |        | LCHIJA | bookshelf                         | 2.3.590                   | Bookshelf-1.12.2-2.3.590.jar                              | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | buildcraftlib                     | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftcore                    | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftbuilders                | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcrafttransport               | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftsilicon                 | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftenergy                  | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | natura                            | 1.12.2-4.3.2.69           | natura-1.12.2-4.3.2.69.jar                                | None                                     |        | LCHIJA | forestry                          | 5.8.2.387                 | forestry_1.12.2-5.8.2.387.jar                             | None                                     |        | LCHIJA | buildcraftcompat                  | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftfactory                 | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | buildcraftrobotics                | 7.99.24.8                 | buildcraft-all-7.99.24.8.jar                              | None                                     |        | LCHIJA | chameleon                         | 1.12-4.1.3                | Chameleon-1.12-4.1.3.jar                                  | None                                     |        | LCHIJA | chickenchunks                     | 2.4.2.74                  | ChickenChunks-1.12.2-2.4.2.74-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | chunkgenlimit                     | 1.1                       | chunkgenlimiter-1.1.jar                                   | None                                     |        | LCHIJA | clumps                            | 3.1.2                     | Clumps-3.1.2.jar                                          | None                                     |        | LCHIJA | controlling                       | 3.0.10                    | Controlling-3.0.12.2.jar                                  | None                                     |        | LCHIJA | cookingforblockheads              | 6.5.0                     | CookingForBlockheads_1.12.2-6.5.0.jar                     | None                                     |        | LCHIJA | craftingtweaks                    | 8.1.9                     | CraftingTweaks_1.12.2-8.1.9.jar                           | None                                     |        | LCHIJA | ctgui                             | 1.0.0                     | CraftTweaker2-1.12-4.1.20.687.jar                         | None                                     |        | LCHIJA | crafttweakerjei                   | 2.0.3                     | CraftTweaker2-1.12-4.1.20.687.jar                         | None                                     |        | LCHIJA | crimsonrevelations                | 0.8                       | crimsonrevelations-0.8.jar                                | None                                     |        | LCHIJA | crimsonwarfare                    | 1.5                       | crimsonwarfare-1.5.jar                                    | None                                     |        | LCHIJA | cucumber                          | 1.1.3                     | Cucumber-1.12.2-1.1.3.jar                                 | None                                     |        | LCHIJA | customloadingscreen               | 1.12.2-1.5.7              | CustomLoadingScreen-1.12.2-1.5.7.jar                      | None                                     |        | LCHIJA | cyclopscore                       | 1.6.7                     | CyclopsCore-1.12.2-1.6.7.jar                              | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |        | LCHIJA | eleccore                          | 1.9.453                   | ElecCore-1.12.2-1.9.453.jar                               | None                                     |        | LCHIJA | mcjtylib_ng                       | 3.5.4                     | mcjtylib-1.12-3.5.4.jar                                   | None                                     |        | LCHIJA | opencomputers                     | 1.7.7+5413028             | OpenComputers-MC1.12.2-1.7.7+5413028.jar                  | None                                     |        | LCHIJA | rftools                           | 7.73                      | rftools-1.12-7.73.jar                                     | None                                     |        | LCHIJA | deepresonance                     | 1.8.0                     | deepresonance-1.12-1.8.0.jar                              | None                                     |        | LCHIJA | dimdoors                          | 3.0.10                    | DimensionalDoors-1.12.2-3.0.12.jar                        | None                                     |        | LCHIJA | ding                              | 1.0.2                     | Ding-1.12.2-1.0.2.jar                                     | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | draconicadditions                 | 1.17.0                    | Draconic-Additions-1.12.2-1.17.0.45-universal.jar         | None                                     |        | LCHIJA | ebwizardry                        | 4.3.9                     | ElectroblobsWizardry-4.3.9.jar                            | None                                     |        | LCHIJA | enchdesc                          | 1.1.15                    | EnchantmentDescriptions-1.12.2-1.1.15.jar                 | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | endercrop                         | 1.12.2-1.6.0              | endercrop-1.12.2-1.6.0.jar                                | None                                     |        | LCHIJA | enderiobase                       | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduits                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduitsappliedenergistics | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduitsopencomputers      | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioconduitsrefinedstorage     | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiointegrationforestry        | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiointegrationticlate         | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderioinvpanel                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | ftblib                            | 5.4.7.2                   | FTBLib-5.4.7.2.jar                                        | None                                     |        | LCHIJA | enderiomachines                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | enderiopowertools                 | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |        | LCHIJA | mcmultipart                       | 2.5.3                     | MCMultiPart-2.5.3.jar                                     | None                                     |        | LCHIJA | mekanism                          | 1.12.2-9.8.3.390          | Mekanism-1.12.2-9.8.3.390.jar                             | None                                     |        | LCHIJA | gasconduits                       | 5.3.70                    | EnderIO-conduits-mekanism-1.12.2-5.3.70.jar               | None                                     |        | LCHIJA | enderioendergy                    | 5.3.70                    | EnderIO-endergy-1.12.2-5.3.70.jar                         | None                                     |        | LCHIJA | enderstorage                      | 2.4.6.137                 | EnderStorage-1.12.2-2.4.6.137-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | energyconverters                  | 1.3.7.30                  | energyconverters_1.12.2-1.3.7.30.jar                      | None                                     |        | LCHIJA | engineersdoors                    | 0.9.1                     | engineers_doors-1.12.2-0.9.1.jar                          | None                                     |        | LCHIJA | renderlib                         | 1.2.7                     | RenderLib-1.12.2-1.2.7.jar                                | None                                     |        | LCHIJA | entityculling                     | 6.3.1                     | EntityCulling-1.12.2-6.3.1.jar                            | None                                     |        | LCHIJA | hammercore                        | 2.0.6.32                  | HammerLib-1.12.2-2.0.6.32.jar                             | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |        | LCHIJA | projecte                          | 1.12.2-PE1.4.1            | ProjectE-1.12.2-PE1.4.1.jar                               | None                                     |        | LCHIJA | expequiv                          | 12.3.17                   | ExpandedEquivalence-1.12.2-12.3.17.jar                    | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |        | LCHIJA | extra_spells                      | 1.2.0                     | ExtraSpells-1.12.2-1.2.0.jar                              | None                                     |        | LCHIJA | zerocore                          | 1.12.2-0.1.2.9            | zerocore-1.12.2-0.1.2.9.jar                               | None                                     |        | LCHIJA | bigreactors                       | 1.12.2-0.4.5.68           | ExtremeReactors-1.12.2-0.4.5.68.jar                       | None                                     |        | LCHIJA | fastbench                         | 1.7.4                     | FastWorkbench-1.12.2-1.7.4.jar                            | None                                     |        | LCHIJA | floodlights                       | 1.4.4-22                  | FloodLights-1.12.2-1.4.4-22.jar                           | None                                     |        | LCHIJA | sonarcore                         | 5.0.19                    | sonarcore-1.12.2-5.0.19-20.jar                            | None                                     |        | LCHIJA | fluxnetworks                      | 4.1.0                     | FluxNetworks-1.12.2-4.1.1.34.jar                          | None                                     |        | LCHIJA | foamfix                           | @VERSION@                 | foamfix-0.10.15-1.12.2.jar                                | None                                     |        | LCHIJA | forbidden_arcanus                 | 1.12.2-1.1.4              | forbidden_arcanus-1.12.2-1.1.4.jar                        | None                                     |        | LCHIJA | forgeendertech                    | 1.12.2-4.5.6.1            | ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar              | None                                     |        | LCHIJA | forgemultipartcbe                 | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | microblockcbe                     | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |        | LCHIJA | minecraftmultipartcbe             | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |        | LCHIJA | ftbutilities                      | 5.4.1.131                 | FTBUtilities-5.4.1.131.jar                                | None                                     |        | LCHIJA | cfm                               | 6.3.0                     | furniture-6.3.2-1.12.2.jar                                | None                                     |        | LCHIJA | futuremc                          | 0.2.6                     | future-mc-0.2.11.jar                                      | None                                     |        | LCHIJA | geneticsreborn                    | 1.28                      | geneticsreborn-1.12-1.32.jar                              | None                                     |        | LCHIJA | getittogetherdrops                | 1.0.2                     | getittogetherdrops-1.12.2-v1.0.2.jar                      | None                                     |        | LCHIJA | gunpowderlib                      | 1.12.2-1.1                | GunpowderLib-1.12.2-1.1.jar                               | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | harvest                           | 1.12-1.2.8-25             | Harvest-1.12-1.2.8-25.jar                                 | None                                     |        | LCHIJA | hats                              | 7.1.1                     | Hats-1.12.2-7.1.1.jar                                     | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | waila                             | 1.8.26                    | Hwyla-1.8.26-B41_1.12.2.jar                               | None                                     |        | LCHIJA | illagers_plus                     | 1.1                       | IllagersPlus-1.12.2-1.1.3.jar                             | None                                     |        | LCHIJA | immersivecables                   | 1.3.2                     | ImmersiveCables-1.12.2-1.3.2.jar                          | None                                     |        | LCHIJA | immersivepetroleum                | 1.1.10                    | immersivepetroleum-1.12.2-1.1.10.jar                      | None                                     |        | LCHIJA | immersiveposts                    | 0.2.1                     | ImmersivePosts-0.2.1.jar                                  | 0ba8738eadcf158e7fe1452255a73a022fb15feb |        | LCHIJA | teslacorelib                      | 1.0.18                    | tesla-core-lib-1.12.2-1.0.18.jar                          | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | industrialforegoing               | 1.12.2-1.12.2             | industrialforegoing-1.12.2-1.12.13-237.jar                | None                                     |        | LCHIJA | industrialmeat                    | 1.12-1.0.2                | industrialmeat-1.12-1.0.2.jar                             | None                                     |        | LCHIJA | industrialrenewal                 | 0.21.8                    | IndustrialRenewal_1.12.2-0.21.8.jar                       | None                                     |        | LCHIJA | initialinventory                  | 2.0.2                     | InitialInventory-3.0.0.jar                                | None                                     |        | LCHIJA | mysticalagriculture               | 1.7.5                     | MysticalAgriculture-1.12.2-1.7.5.jar                      | None                                     |        | LCHIJA | mysticalagradditions              | 1.3.2                     | MysticalAgradditions-1.12.2-1.3.2.jar                     | None                                     |        | LCHIJA | harvestcraft                      | 1.12.2zb                  | Pam's HarvestCraft 1.12.2zg.jar                           | None                                     |        | LCHIJA | integrationforegoing              | 1.12.2-1.11               | IntegrationForegoing-1.12.2-1.11.jar                      | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | inventorytweaks                   | 1.63+release.109.220f184  | InventoryTweaks-1.63.jar                                  | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |        | LCHIJA | ironchest                         | 1.12.2-7.0.67.844         | ironchest-1.12.2-7.0.72.847.jar                           | None                                     |        | LCHIJA | jaopca                            | 1.12.2-2.2.8.106          | JAOPCA-1.12.2-2.2.8.106.jar                               | None                                     |        | LCHIJA | oredictinit                       | 1.12.2-2.2.1.72           | JAOPCA-1.12.2-2.2.8.106.jar                               | None                                     |        | LCHIJA | jeiintegration                    | 1.6.0                     | jeiintegration_1.12.2-1.6.0.jar                           | None                                     |        | LCHIJA | journeymap                        | 1.12.2-5.7.1              | journeymap-1.12.2-5.7.1.jar                               | None                                     |        | LCHIJA | jrftl                             | 1.1                       | JRFTL[1.12.2]-1.1.jar                                     | None                                     |        | LCHIJA | justenoughdimensions              | 1.6.0-dev.20200416.184714 | justenoughdimensions-1.12.2-1.6.0-dev.20200416.184714.jar | 2b03e1423915a189b8094816baa18f239d576dff |        | LCHIJA | jeid                              | 1.0.4-SNAPSHOT            | JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar                     | None                                     |        | LCHIJA | justenoughreactors                | 1.1.3.61                  | JustEnoughReactors-1.12.2-1.1.3.61.jar                    | 2238d4a92d81ab407741a2fdb741cebddfeacba6 |        | LCHIJA | loottweaker                       | 0.3.1                     | LootTweaker-0.3.1+MC1.12.2.jar                            | None                                     |        | LCHIJA | jeresources                       | 0.9.2.60                  | JustEnoughResources-1.12.2-0.9.2.60.jar                   | None                                     |        | LCHIJA | konkrete                          | 1.6.0                     | konkrete_forge_1.6.0_MC_1.12-1.12.2.jar                   | None                                     |        | LCHIJA | letsencryptcraft                  | @VERSION@                 | letsencryptcraft-1.10.2-1.2.0.jar                         | None                                     |        | LCHIJA | librarianlib                      | 4.22                      | librarianlib-1.12.2-4.22.jar                              | None                                     |        | LCHIJA | libraryex                         | 1.2.2                     | LibraryEx-1.12.2-1.2.2.jar                                | None                                     |        | LCHIJA | lostmagic                         | 1.0                       | lostmagic-1.0.3.jar                                       | None                                     |        | LCHIJA | lunatriuscore                     | 1.2.0.42                  | LunatriusCore-1.12.2-1.2.0.42-universal.jar               | None                                     |        | LCHIJA | mahoutsukai                       | 1.12.2-v1.19.55           | mahoutsukai-1.12.2-v1.19.55.jar                           | None                                     |        | LCHIJA | matc                              | 1.0.1-hotfix              | matc-1.0.1-hotfix.jar                                     | None                                     |        | LCHIJA | immersivetech                     | 1.9.100                   | MCTImmersiveTechnology-1.12.2-1.9.100.jar                 | None                                     |        | LCHIJA | mcwbridges                        | 1.0.6                     | mcw-bridges-1.0.6b-mc1.12.2.jar                           | None                                     |        | LCHIJA | mcwdoors                          | 1.3                       | mcw-doors-1.0.3-mc1.12.2.jar                              | None                                     |        | LCHIJA | mcwfences                         | 1.0.0                     | mcw-fences-1.0.0-mc1.12.2.jar                             | None                                     |        | LCHIJA | mcwfurnitures                     | 1.0.1                     | mcw-furniture-1.0.1-mc1.12.2beta.jar                      | None                                     |        | LCHIJA | mcwroofs                          | 1.0.2                     | mcw-roofs-1.0.2-mc1.12.2.jar                              | None                                     |        | LCHIJA | mcwtrpdoors                       | 1.0.2                     | mcw-trapdoors-1.0.3-mc1.12.2.jar                          | None                                     |        | LCHIJA | mcwwindows                        | 1.0                       | mcw-windows-1.0.0-mc1.12.2.jar                            | None                                     |        | LCHIJA | mekanismgenerators                | 1.12.2-9.8.3.390          | MekanismGenerators-1.12.2-9.8.3.390.jar                   | None                                     |        | LCHIJA | mekanismtools                     | 1.12.2-9.8.3.390          | MekanismTools-1.12.2-9.8.3.390.jar                        | None                                     |        | LCHIJA | mekores                           | 2.0.13                    | mekores-2.0.13.jar                                        | None                                     |        | LCHIJA | modularforcefieldsystem           | 3.0.1                     | MFFS-1.12.2-4.0.1.0_1.12_cc3a5aa.jar                      | None                                     |        | LCHIJA | numina                            | 1.12.2-1.0.38             | Numina-1.12.2-1.0.38.jar                                  | None                                     |        | LCHIJA | powersuits                        | 1.12.2-1.0.46             | ModularPowersuits-1.12.2-1.0.46.jar                       | None                                     |        | LCHIJA | moreoverlays                      | 1.15.1                    | moreoverlays-1.15.1-mc1.12.2.jar                          | None                                     |        | LCHIJA | morpheus                          | 1.12.2-3.5.106            | Morpheus-1.12.2-3.5.106.jar                               | None                                     |        | LCHIJA | mousetweaks                       | 2.10                      | MouseTweaks-2.10-mc1.12.2.jar                             | None                                     |        | LCHIJA | supermartijn642configlib          | 1.1.6                     | supermartijn642configlib-1.1.6-forge-mc1.12.jar           | None                                     |        | LCHIJA | supermartijn642corelib            | 1.1.6                     | supermartijn642corelib-1.1.6-forge-mc1.12.jar             | None                                     |        | LCHIJA | movingelevators                   | 1.3.12                    | movingelevators-1.3.12-forge-mc1.12.jar                   | None                                     |        | LCHIJA | mrtjpcore                         | 2.1.4.43                  | MrTJPCore-1.12.2-2.1.4.43-universal.jar                   | None                                     |        | LCHIJA | multithreadednoise                | 0.0.2                     | MultithreadedNoise-1.12.2-0.0.2.jar                       | None                                     |        | LCHIJA | mysticaladaptations               | 1.8.8                     | MysticalAdaptations-1.12.2-1.8.8.jar                      | None                                     |        | LCHIJA | naturescompass                    | 1.8.5                     | NaturesCompass-1.12.2-1.8.5.jar                           | None                                     |        | LCHIJA | netherex                          | 2.2.5                     | NetherEx-1.12.2-2.2.5.jar                                 | None                                     |        | LCHIJA | netherportalfix                   | 5.3.17                    | NetherPortalFix_1.12.1-5.3.17.jar                         | None                                     |        | LCHIJA | norecipebook                      | 1.2.1                     | noRecipeBook_v1.2.2formc1.12.2.jar                        | None                                     |        | LCHIJA | nothirium                         | 0.2.4-beta                | Nothirium-1.12.2-0.2.4-beta.jar                           | None                                     |        | LCHIJA | hbm                               | NTM-Extended-1.12.2-1.9.2 | NTM-Extended-1.12.2-1.9.2.jar                             | None                                     |        | LCHIJA | omlib                             | 3.1.5-256                 | omlib-1.12.2-3.1.5-256.jar                                | None                                     |        | LCHIJA | openmods                          | 0.12.2                    | OpenModsLib-1.12.2-0.12.2.jar                             | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openblocks                        | 1.8.1                     | OpenBlocks-1.12.2-1.8.1.jar                               | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openmodularturrets                | 3.1.14-382                | openmodularturrets-1.12.2-3.1.14-382.jar                  | None                                     |        | LCHIJA | opensecurity                      | 1.0-93                    | OpenSecurity-1.12.2-1.0-93.jar                            | None                                     |        | LCHIJA | brewcraft                         | 1.12.2-1.0.2              | Pam's BrewCraft 1.12.2-1.0.2.jar                          | None                                     |        | LCHIJA | particleculling                   | v1.4.1                    | particleculling-1.12.2-v1.4.1.jar                         | None                                     |        | LCHIJA | performant                        | 1.12.2-1.5                | performant-1.11.jar                                       | None                                     |        | LCHIJA | physica                           | 1.12.2-0.0.2-0            | PhysicaCore-1.12.2-0.0.2-0 ALPHA.jar                      | None                                     |        | LCHIJA | placebo                           | 1.6.0                     | Placebo-1.12.2-1.6.0.jar                                  | None                                     |        | LCHIJA | shetiphiancore                    | 3.5.9                     | shetiphiancore-1.12.0-3.5.9.jar                           | None                                     |        | LCHIJA | platforms                         | 1.4.6                     | platforms-1.12.0-1.4.6.jar                                | None                                     |        | LCHIJA | pneumaticcraft                    | 1.12.2-0.11.15-398        | pneumaticcraft-repressurized-1.12.2-0.11.15-398.jar       | None                                     |        | LCHIJA | portalgun                         | 7.1.0                     | PortalGun-1.12.2-7.1.0.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | portality                         | 1.0-SNAPSHOT              | portality-1.12.2-1.2.3-15.jar                             | None                                     |        | LCHIJA | practicallogistics2               | 3.0.8                     | practicallogistics2-1.12.2-3.0.8-11.jar                   | None                                     |        | LCHIJA | projectintelligence               | 1.0.9                     | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar         | None                                     |        | LCHIJA | projectred-core                   | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-Base.jar                      | None                                     |        | LCHIJA | projectred-compat                 | 1.0                       | ProjectRed-1.12.2-4.9.4.120-compat.jar                    | None                                     |        | LCHIJA | projectred-integration            | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-integration.jar               | None                                     |        | LCHIJA | projectred-transmission           | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-integration.jar               | None                                     |        | LCHIJA | projectred-fabrication            | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-fabrication.jar               | None                                     |        | LCHIJA | projectred-illumination           | 4.9.4.120                 | ProjectRed-1.12.2-4.9.4.120-lighting.jar                  | None                                     |        | LCHIJA | psi                               | r1.1-78                   | Psi-r1.1-78.2.jar                                         | None                                     |        | LCHIJA | psipherals                        | 1.1.0                     | psipherals-1.1.0.jar                                      | None                                     |        | LCHIJA | ptrmodellib                       | 1.0.5                     | PTRLib-1.0.5.jar                                          | None                                     |        | LCHIJA | quickleafdecay                    | 1.2.4                     | QuickLeafDecay-MC1.12.1-1.2.4.jar                         | None                                     |        | LCHIJA | reccomplex                        | 1.4.8.4                   | RecurrentComplex-1.4.8.4.jar                              | None                                     |        | LCHIJA | redstonearsenal                   | 2.6.6                     | RedstoneArsenal-1.12.2-2.6.6.1-universal.jar              | None                                     |        | LCHIJA | redstonerepository                | 1.12.2-2.0.0              | RedstoneRepository-1.12.2-2.0.0.jar                       | None                                     |        | LCHIJA | xreliquary                        | 1.12.2-1.3.4.796          | Reliquary-1.12.2-1.3.4.796.jar                            | None                                     |        | LCHIJA | rftoolsdim                        | 5.71                      | rftoolsdim-1.12-5.71.jar                                  | None                                     |        | LCHIJA | rsgauges                          | 1.2.8                     | rsgauges-1.12.2-1.2.8.jar                                 | ed58ed655893ced6280650866985abcae2bf7559 |        | LCHIJA | savemystronghold                  | 1.12.2-1.0.0              | savemystronghold-1.12.2-1.0.0.jar                         | None                                     |        | LCHIJA | secretroomsmod                    | 5.6.4                     | secretroomsmod-1.12.2-5.6.4.jar                           | None                                     |        | LCHIJA | servertabinfo                     | 1.2.6                     | ServerTabInfo-1.12.2-1.2.6.jar                            | None                                     |        | LCHIJA | sgcraft                           | 2.0.3                     | SGCraft-2.0.5.jar                                         | None                                     |        | LCHIJA | simplylight                       | 1.12.2-0.8.7              | simplylight-1.12.2-0.8.7.jar                              | None                                     |        | LCHIJA | srparasites                       | 1.9.11                    | SRParasites-1.12.2v1.9.11.jar                             | None                                     |        | LCHIJA | stackie                           | 1.6.0.48                  | Stackie-1.12.2-1.6.0.48-universal.jar                     | None                                     |        | LCHIJA | storagedrawers                    | 5.2.2                     | StorageDrawers-1.12.2-5.4.2.jar                           | None                                     |        | LCHIJA | sync                              | 7.1.0                     | Sync-1.12.2-7.1.0.jar                                     | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |        | LCHIJA | tesseract                         | 1.0.29                    | tesseract-1.0.29-forge-mc1.12.jar                         | None                                     |        | LCHIJA | tfspellpack                       | 1.1.0                     | TFSpellPack-1.1.0-MC1.12.2.jar                            | None                                     |        | LCHIJA | tg                                | 0.1.6.0                   | Thaumic_Gadgets_1.12.2_0.1.6_tb.26.jar                    | None                                     |        | LCHIJA | thaumadditions                    | 12.7.8                    | ThaumicAdditions-1.12.2-12.7.8.jar                        | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |        | LCHIJA | thaumicaugmentation               | 1.12.2-2.1.10             | ThaumicAugmentation-1.12.2-2.1.10.jar                     | None                                     |        | LCHIJA | thaumicjei                        | 1.6.0                     | ThaumicJEI-1.12.2-1.6.0-27.jar                            | None                                     |        | LCHIJA | thaumicenergistics                | 2.2.3                     | thaumicenergistics-2.2.4.jar                              | None                                     |        | LCHIJA | tcinventoryscan                   | 2.0.10                    | ThaumicInventoryScanning_1.12.2-2.0.10.jar                | None                                     |        | LCHIJA | thaumicperiphery                  | 0.3.1                     | thaumicperiphery-0.3.1.jar                                | None                                     |        | LCHIJA | thaumicrestoration                | 1.5.0                     | ThaumicRestoration-1.5.0.jar                              | None                                     |        | LCHIJA | thaumictinkerer                   | 1.12.2-5.0-620a0c5        | thaumictinkerer-1.12.2-5.0-620a0c5.jar                    | None                                     |        | LCHIJA | thaumicwonders                    | 1.8.2                     | thaumicwonders-1.8.2.jar                                  | None                                     |        | LCHIJA | beneath                           | 1.7.1                     | The Beneath-1.12.2-1.7.1.jar                              | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | thermalcultivation                | 0.3.6                     | ThermalCultivation-1.12.2-0.3.6.1-universal.jar           | None                                     |        | LCHIJA | thermaldynamics                   | 2.5.6                     | ThermalDynamics-1.12.2-2.5.6.1-universal.jar              | None                                     |        | LCHIJA | thermalinnovation                 | 0.3.6                     | ThermalInnovation-1.12.2-0.3.6.1-universal.jar            | None                                     |        | LCHIJA | tinker_io                         | rw2.8.3                   | tinker_io-1.12.2-rw2.8.3.jar                              | None                                     |        | LCHIJA | tinkersaddons                     | 1.0.7                     | Tinkers' Addons-1.12.1-1.0.7.jar                          | None                                     |        | LCHIJA | tcomplement                       | 1.12.2-0.4.3              | TinkersComplement-1.12.2-0.4.3.jar                        | None                                     |        | LCHIJA | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769  | TinkerToolLeveling-1.12.2-1.1.0.jar                       | None                                     |        | LCHIJA | torchmaster                       | 1.8.5.0                   | torchmaster_1.12.2-1.8.5.0.jar                            | None                                     |        | LCHIJA | totemic                           | 1.12.2-0.11.7             | Totemic-1.12.2-0.11.7.jar                                 | None                                     |        | LCHIJA | trackapi                          | 1.2                       | TrackAPI-1.2.jar                                          | None                                     |        | LCHIJA | universalmodcore                  | 1.1.4                     | UniversalModCore-1.12.2-forge-1.1.4-2b81e7.jar            | None                                     |        | LCHIJA | valkyrielib                       | 1.12.2-2.0.20.1           | valkyrielib-1.12.2-2.0.20.1.jar                           | None                                     |        | LCHIJA | universalmodifiers                | 1.12.2-1.0.16.1           | valkyrielib-1.12.2-2.0.20.1.jar                           | None                                     |        | LCHIJA | vampiresneedumbrellas             | 1.4                       | VampiresNeedUmbrellas-1.12.2-1.5.jar                      | None                                     |        | LCHIJA | vampirism                         | 1.6.2                     | Vampirism-1.12.2-1.6.2.jar                                | None                                     |        | LCHIJA | teamlapen-lib                     | 1.6.2                     | Vampirism-1.12.2-1.6.2.jar                                | None                                     |        | LCHIJA | vampirism_integrations            | vampirism_integrations    | VampirismIntegrations-1.12.2-1.3.0.jar                    | None                                     |        | LCHIJA | vanillafix                        | 1.0.10-150                | VanillaFix-1.0.10-150.jar                                 | None                                     |        | LCHIJA | vc                                | 5.10-final                | vc-1.12.2-5.10-final.jar                                  | None                                     |        | LCHIJA | wailaharvestability               | 1.1.12                    | WailaHarvestability-mc1.12-1.1.12.jar                     | None                                     |        | LCHIJA | wanionlib                         | 1.12.2-2.9                | WanionLib-1.12.2-2.9.jar                                  | None                                     |        | LCHIJA | wawla                             | 2.6.275                   | Wawla-1.12.2-2.6.275.jar                                  | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | waystones                         | 4.1.0                     | Waystones_1.12.2-4.1.0.jar                                | None                                     |        | LCHIJA | wearablebackpacks                 | 3.1.4                     | WearableBackpacks-1.12.2-3.1.4.jar                        | None                                     |        | LCHIJA | woot                              | 1.12.2-1.4.11             | woot-1.12.2-1.4.11.jar                                    | None                                     |        | LCHIJA | wrcbe                             | 2.3.2                     | WR-CBE-1.12.2-2.3.2.33-universal.jar                      | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | recipehandler                     | 0.14                      | YARCF-0.14(1.12.2).jar                                    | None                                     |        | LCHIJA | phosphor-lighting                 | 1.12.2-0.2.6              | phosphor-1.12.2-0.2.6+build50-universal.jar               | f0387d288626cc2d937daa504e74af570c52a2f1 |        | LCHIJA | ancientspellcraft                 | 1.12.2-1.5.9              | AncientSpellcraft-1.12.2-1.5.9.jar                        | None                                     |        | LCHIJA | immersiveintelligence             | 0.2.1                     | immersiveintelligence-0.2.1.jar                           | 770570c49a2652e64a9b29b9b9d9919ca68b7065 |        | LCHIJA | structurize                       | 1.12.2-0.10.277-RELEASE   | structurize-1.12.2-0.10.277-RELEASE.jar                   | None                                     |        | LCHIJA | minecolonies                      | 1.12.2-0.11.841-ALPHA     | minecolonies-1.12.2-0.11.841-BETA-universal.jar           | None                                     |        | LCHIJA | solcarrot                         | 1.8.4                     | solcarrot-1.12.2-1.8.4.jar                                | None                                     |        | LCHIJA | wizardryutils                     | 1.12.2-1.1.4              | WizardryUtils-1.12.2-1.1.4.jar                            | None                                     |        | LCHIJA | spellbundle                       | 1.12.2-1.1.3              | SpellBundle-1.12.2-1.1.3.jar                              | None                                     |        | LCHIJA | armoryexpansion-conarm            | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |        | LCHIJA | eleccoreloader                    | 1.9.453                   | ElecCore-1.12.2-1.9.453.jar                               | None                                     |        | LCHIJA | librarianliblate                  | 4.22                      | librarianlib-1.12.2-4.22.jar                              | None                                     |        | LCHIJA | mysticallib                       | 1.12.2-1.13.0             | mysticallib-1.12.2-1.13.0.jar                             | None                                     |        | LCHIJA | teslacorelib_registries           | 1.0.18                    | tesla-core-lib-1.12.2-1.0.18.jar                          | None                                     |        | LCHIJA | unidict                           | 1.12.2-3.0.10             | UniDict-1.12.2-3.0.10.jar                                 | None                                     |        | LCHIJA | wrapup                            | 1.12-1.1.3                | WrapUp-1.12-1.1.3.jar                                     | None                                     |        | UD     | advancedrocketrycore              | 1                         | minecraft.jar                                             | None                                     |        | UD     | mtqfix                            | 1.1.0                     | minecraft.jar                                             | None                                     |   Loaded coremods (and transformers): IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)                                         blusunrize.immersiveengineering.common.asm.IEClassTransformer                                       EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)                                         nihiltres.engineersdoors.common.asm.EngineersDoorsClassTransformer                                       LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)                                         com.teamwizardry.librarianlib.asm.LibLibTransformer                                       ParticleCullingLoadingPlugin (particleculling-1.12.2-v1.4.1.jar)                                                                                MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)                                         mekanism.coremod.KeybindingMigrationHelper                                       TransformerLoader (OpenComputers-MC1.12.2-1.7.7+5413028.jar)                                         li.cil.oc.common.asm.ClassTransformer                                       BewitchmentFMLLoadingPlugin (bewitchment-1.12.2-0.0.22.64.jar)                                                                                AppleCore (AppleCore-mc1.12.2-3.4.0.jar)                                         squeek.applecore.asm.TransformerModuleHandler                                       IILoadingPlugin (immersiveintelligence-core-0.2.1.jar)                                         pl.pabilo8.immersiveintelligence.common.asm.IIClassTransformer                                       ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)                                         com.mrcrayfish.obfuscate.asm.ObfuscateTransformer                                       ClsPlugin (CustomLoadingScreen-1.12.2-1.5.7.jar)                                         alexiil.mc.mod.load.coremod.ClsTransformer                                       UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)                                         wanion.unidict.core.UniDictCoreModTransformer                                       EntityCullingPlugin (EntityCulling-1.12.2-6.3.1.jar)                                         meldexun.entityculling.asm.EntityCullingClassTransformer                                       Thaumic Augmentation Core Plugin (ThaumicAugmentation-1.12.2-2.1.10.jar)                                         thecodex6824.thaumicaugmentation.core.TATransformer                                       Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)                                         invtweaks.forge.asm.ContainerTransformer                                       EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)                                         com.enderio.core.common.transform.EnderCoreTransformer                                         com.enderio.core.common.transform.SimpleMixinPatcher                                       PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50-universal.jar)                                                                                ChunkGenLimiterCoremod (chunkgenlimiter-1.1-core.jar)                                         io.github.barteks2x.chunkgenlimiter.coremod.ChunkGenLimitTransformer                                       GITDLoadingPlugin (getittogetherdrops-1.12.2-v1.0.2.jar)                                                                                RenderLibPlugin (RenderLib-1.12.2-1.2.7.jar)                                         meldexun.renderlib.asm.RenderLibClassTransformer                                       IvToolkit (IvToolkit-1.3.3-1.12.jar)                                                                                AdvancedRocketryPlugin (AdvancedRocketry-1.12.2-2.0.0-13.jar)                                         zmaster587.advancedRocketry.asm.ClassTransformer                                       KonkreteCore (konkrete_forge_1.6.0_MC_1.12-1.12.2.jar)                                                                                SuperMartijn642's Core Lib Plugin (supermartijn642corelib-1.1.6-forge-mc1.12.jar)                                                                                MixinBooter (!mixinbooter-7.1.jar)                                                                                SoundUnpack (OpenSecurity-1.12.2-1.0-93.jar)                                                                                Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)                                         pl.asie.foamfix.coremod.FoamFixTransformer                                       ForgelinPlugin (Forgelin-1.8.4.jar)                                                                                CreativePatchingLoader (CreativeCore_v1.10.70_mc1.12.2.jar)                                                                                OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)                                         openmods.core.OpenModsClassTransformer                                       FutureMC (future-mc-0.2.11.jar)                                         thedarkcolour.futuremc.asm.CoreTransformer                                       CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)                                         team.chisel.ctm.client.asm.CTMTransformer                                       Born in a Barn (Born In A Barn V1.8-1.12-1.1.jar)                                         com.chocohead.biab.BornInABarn                                       NothiriumPlugin (Nothirium-1.12.2-0.2.4-beta.jar)                                         meldexun.nothirium.mc.asm.NothiriumClassTransformer                                       llibrary (llibrary-core-1.0.11-1.12.2.jar)                                         net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer                                         net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher                                       AstralCore (astralsorcery-1.12.2-1.10.27.jar)                                                                                ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)                                         shetiphian.asm.ClassTransformer                                       VanillaFixLoadingPlugin (VanillaFix-1.0.10-150.jar)                                                                                JustEnoughIDs Extension Plugin (JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar)                                         org.dimdev.jeid.JEIDTransformer                                       CorePlugin (ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar)                                                                                HCASM (HammerLib-1.12.2-2.0.6.32.jar)                                         com.zeitheron.hammercore.asm.HammerCoreTransformer                                       SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar)                                         com.wynprice.secretroomsmod.core.SecretRoomsTransformer                                       Better Biome Blend (betterbiomeblend-1.12.2-1.1.7-forge.jar)                                                                                TARCore (ThaumicAdditions-1.12.2-12.7.8.jar)                                                                                MtqFixPlugin (mtqfix-1.12.2-1.1.0.jar)                                         jmn.mods.mtqfix.AsmTransformer   GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.   OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:FINISHED],[player_render_hook:FINISHED],[horse_null_fix:FINISHED]   Ender IO: Found the following problem(s) with your installation (That does NOT mean that Ender IO caused the crash or was involved in it in any way. We add this information to help finding common problems, not as an invitation to post any crash you encounter to Ender IO's issue tracker. Always check the stack trace above to see which mod is most likely failing.):                               * Optifine is installed. This is NOT supported.                              This may (look up the meaning of 'may' in the dictionary if you're not sure what it means) have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.             Authlib is : /C:/Users/Cercyon/curseforge/minecraft/Install/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar                          !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!             !!!You are looking at the diagnostics information, not at the crash.       !!!             !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!             !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   Pulsar/tconstruct loaded Pulses: - TinkerCommons (Enabled/Forced)                                    - TinkerWorld (Enabled/Not Forced)                                    - TinkerTools (Enabled/Not Forced)                                    - TinkerHarvestTools (Enabled/Forced)                                    - TinkerMeleeWeapons (Enabled/Forced)                                    - TinkerRangedWeapons (Enabled/Forced)                                    - TinkerModifiers (Enabled/Forced)                                    - TinkerSmeltery (Enabled/Not Forced)                                    - TinkerGadgets (Enabled/Not Forced)                                    - TinkerOredict (Enabled/Forced)                                    - TinkerIntegration (Enabled/Forced)                                    - TinkerFluids (Enabled/Forced)                                    - TinkerMaterials (Enabled/Forced)                                    - TinkerModelRegister (Enabled/Forced)                                    - chiselIntegration (Enabled/Not Forced)                                    - craftingtweaksIntegration (Enabled/Not Forced)                                    - wailaIntegration (Enabled/Not Forced)   AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768   Pulsar/natura loaded Pulses: - NaturaCommons (Enabled/Forced)                                - NaturaOverworld (Enabled/Not Forced)                                - NaturaNether (Enabled/Not Forced)                                - NaturaDecorative (Enabled/Not Forced)                                - NaturaTools (Enabled/Not Forced)                                - NaturaEntities (Enabled/Not Forced)                                - NaturaOredict (Enabled/Forced)                                - NaturaWorld (Enabled/Not Forced)                                - craftingtweaksIntegration (Enabled/Not Forced)   HammerCore Debug Information: Dependent Mods:                                 -Expanded Equivalence (expequiv) @ 12.3.17                                 -Thaumic Additions: Reconstructed (thaumadditions) @ 12.7.8   Pulsar/tcomplement loaded Pulses: - ModuleCommons (Enabled/Forced)                                     - ModuleMelter (Enabled/Not Forced)                                     - ModuleArmor (Enabled/Not Forced)                                     - ModuleSteelworks (Enabled/Not Forced)                                     - ChiselPlugin (Enabled/Not Forced)                                     - ToolLevelingPlugin (Enabled/Not Forced)                                     - Oredict (Enabled/Forced)   List of loaded APIs: * AbyssalCraftAPI (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Biome (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Block (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Caps (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Condition (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Disruption (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Energy (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Entity (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Event (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Integration (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Internal (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Item (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Necronomicon (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Recipe (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Rending (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Ritual (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Spell (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Structure (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|Transfer (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AbyssalCraftAPI|TransferCaps (1.30.0) from AbyssalCraft-1.12.2-1.10.4.jar                        * AppleCoreAPI (3.4.0) from AppleCore-mc1.12.2-3.4.0.jar                        * appliedenergistics2|API (rv6) from appliedenergistics2-rv6-stable-7.jar                        * Base|API (1.0.0) from base-1.12.2-3.14.0.jar                        * Baubles|API (1.4.0.2) from Baubles-1.12-1.5.2.jar                        * BetterWithModsAPI (Beta 0.6) from AppleSkin-mc1.12-1.0.14.jar                        * bigreactors|API (4.0.1) from ExtremeReactors-1.12.2-0.4.5.68.jar                        * bloodmagic-api (2.0.0) from BloodMagic-1.12.2-2.4.3-105.jar                        * BotaniaAPI (79) from AkashicTome-1.2-12.jar                        * buildcraftapi_blocks (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_boards (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_core (2.2) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_crops (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_enums (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_events (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_facades (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_filler (5.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_fuels (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_gates (4.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_items (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_library (2.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_lists (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_power (1.3) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_recipes (3.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_robotics (3.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_statements (1.1) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_tiles (1.2) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_tools (1.0) from buildcraft-all-7.99.24.8.jar                        * buildcraftapi_transport (5.0) from buildcraft-all-7.99.24.8.jar                        * Chisel-API (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar                        * ChiselAPI|Carving (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar                        * cofhapi (2.5.0) from CoFHCore-1.12.2-4.6.6.1-universal.jar                        * CraftingTweaks|API (4.1) from CraftingTweaks_1.12.2-8.1.9.jar                        * CSLib|API (1.0.1) from PTRLib-1.0.5.jar                        * ctm-api (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-events (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-models (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-textures (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * ctm-api-utils (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar                        * DR-API (1.0.4-Beta) from deepresonance-1.12-1.8.0.jar                        * DraconicEvolution|API (1.3) from Draconic-Evolution-1.12.2-2.3.28.354-universal.jar                        * ElecCoreAPI (1.0.0) from ElecCore-1.12.2-1.9.453.jar                        * enderioapi (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|addon (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|capacitor (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|conduits (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|farm (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|redstone (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|teleport (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|tools (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * enderioapi|upgrades (4.0.0) from EnderIO-1.12.2-5.3.70.jar                        * ForestryAPI|apiculture (5.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|arboriculture (4.3.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|book (5.8.1) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|circuits (3.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|climate (5.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|core (5.7.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|farming (5.8.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|food (1.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|fuels (3.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|genetics (5.7.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|gui (5.8.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|hives (4.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|lepidopterology (1.4.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|mail (3.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|modules (5.7.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|multiblock (3.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|recipes (5.4.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|storage (5.0.0) from forestry_1.12.2-5.8.2.387.jar                        * ForestryAPI|world (2.1.0) from forestry_1.12.2-5.8.2.387.jar                        * ForgeEndertechAPI (1.0) from ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar                        * Guide-API|API (2.0.0) from Guide-API-1.12-2.1.8-63.jar                        * iChunUtil API (1.2.0) from iChunUtil-1.12.2-7.2.2.jar                        * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.12-98.jar                        * ImmersiveEngineering|ImmersiveFluxAPI (1.0) from ImmersiveEngineering-0.12-98.jar                        * industrialforegoingapi (5) from industrialforegoing-1.12.2-1.12.13-237.jar                        * jeresources|API (0.9.2.60) from JustEnoughResources-1.12.2-0.9.2.60.jar                        * journeymap|client-api (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-display (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-event (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-model (1.4) from journeymap-1.12.2-5.7.1.jar                        * journeymap|client-api-util (1.4) from journeymap-1.12.2-5.7.1.jar                        * JustEnoughItemsAPI (4.13.0) from jei_1.12.2-4.16.1.301.jar                        * MatterOverdrive|API (0.4.1) from MatterOverdrive-1.12.2-0.7.1.0-universal.jar                        * MekanismAPI|core (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|energy (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|gas (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|infuse (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|laser (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|transmitter (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar                        * MekanismAPI|util (9.0.0) from Mekanism-1.12.2-9.8.3.390.jar                        * minecolonies-api (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|achievements (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|decorative (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|huts (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|interfaces (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|blocks|types (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client|render (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client|render|modeltype (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|client|render|modeltype|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings|views (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|buildings|workerbuildings (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|guardtype (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|guardtype|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|jobs (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|jobs|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|managers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|managers|interfaces (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|permissions (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|data (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|factory (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|factory|standard (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|location (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|manager (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|request (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|requestable (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|requestable|crafting (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|requester (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|resolver (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|resolver|player (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|resolver|retrying (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|requestsystem|token (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|colony|workorders (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|candb (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|dynamictrees (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|gbook (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|compatibility|tinkers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|configuration (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|crafting (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|creativetab (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|citizen (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|citizen|builder (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|citizen|guards (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|pathfinding (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|basestatemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|states (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|tickratestatemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|ai|statemachine|transition (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|citizen (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|citizen|citizenhandlers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs|barbarians (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs|pirates (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|mobs|util (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|pathfinding (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|entity|pathfinding|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|inventory (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|inventory|api (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|items (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|network (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|sounds (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|tileentities (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|util (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-api|util|constants (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-blockout (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-blockout|controls (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * minecolonies-blockout|views (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar                        * MouseTweaks|API (1.0) from MouseTweaks-2.10-mc1.12.2.jar                        * openblocks|api (1.2) from OpenBlocks-1.12.2-1.8.1.jar                        * opencomputersapi|component (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|core (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|driver (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|driver|item (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|event (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|filesystem (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|internal (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|machine (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|manual (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|network (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * opencomputersapi|prefab (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.7+5413028.jar                        * PatchouliAPI (6) from Patchouli-1.0-23.6.jar                        * PneumaticCraftApi (1.1) from pneumaticcraft-repressurized-1.12.2-0.11.15-398.jar                        * practicallogistics2-api (3.1) from practicallogistics2-1.12.2-3.0.8-11.jar                        * projecteapi (1.12.2-1.2.0) from ProjectE-1.12.2-PE1.4.1.jar                        * projectred|api (2.1) from ProjectRed-1.12.2-4.9.4.120-Base.jar                        * PsiAPI (16) from Psi-r1.1-78.2.jar                        * redstonefluxapi (2.1.1) from RedstoneFlux-1.12-2.1.1.1-universal.jar                        * sonarapi (1.0.1) from sonarcore-1.12.2-5.0.19-20.jar                        * StorageDrawersAPI (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|event (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|registry (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|render (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|storage (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * StorageDrawersAPI|storage-attribute (2.1.0) from StorageDrawers-1.12.2-5.4.2.jar                        * Thaumcraft|API (6.0.2) from Thaumcraft-1.12.2-6.1.BETA26.jar                        * thaumicaugmentationapi (2.1.10) from ThaumicAugmentation-1.12.2-2.1.10.jar                        * tombstone-api (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * tombstone-api-capability (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * tombstone-api-event (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * tombstone-api-magic (1.5.0) from tombstone-4.6.2-1.12.2.jar                        * totemic|API (1.12.2-7.1.0) from Totemic-1.12.2-0.11.7.jar                        * valkyrielib.api (1.12.2-2.0.10a) from valkyrielib-1.12.2-2.0.20.1.jar                        * VampirismAPI (1.4) from Vampirism-1.12.2-1.6.2.jar                        * WailaAPI (1.3) from Hwyla-1.8.26-B41_1.12.2.jar                        * zerocore|API|multiblock (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar                        * zerocore|API|multiblock|rectangular (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar                        * zerocore|API|multiblock|tier (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar                        * zerocore|API|multiblock|validation (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar   Patchouli open book context: n/a   [Psi] Active spell: None   AE2 Integration: IC2:ON, RC:OFF, MFR:OFF, Waila:ON, InvTweaks:ON, JEI:ON, Mekanism:ON, OpenComputers:ON, THE_ONE_PROBE:OFF, TESLA:OFF, CRAFTTWEAKER:ON   Suspected Mods: Unknown   Profiler Position: N/A (disabled)   Player Count: 1 / 8; [EntityPlayerMP['Cercyon_Chronos'/513, l='New World', x=-344.25, y=98.23, z=-161.53]]   Type: Integrated Server (map_client.txt)   Is Modded: Definitely; Client brand changed to 'fml,forge'
    • I don't understand why minecraft crashes when I log in to the server https://mclo.gs/jZVia3x crash log
  • Topics

×
×
  • Create New...

Important Information

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