Coder Social home page Coder Social logo

therandomlabs / randompatches Goto Github PK

View Code? Open in Web Editor NEW
105.0 7.0 22.0 9.64 MB

A bunch of miscellaneous patches for Minecraft.

Home Page: https://www.curseforge.com/minecraft/mc-mods/randompatches-fabric

License: MIT License

Java 100.00%
minecraft forge minecraft-forge fabric minecraft-fabric

randompatches's Introduction

RandomPatches (Fabric)

License: MIT Build Average time to resolve an issue

Downloads Files Download

A bunch of miscellaneous patches for Minecraft. RandomPatches does not require Fabric API!

Also check out RandomTweaks!

When reporting issues or suggesting enhancements, please use the GitHub issue tracker, and make sure you are on the latest version of the mod for your Minecraft version—it's easier to keep track of things this way. Avoid commenting them on the CurseForge project page or sending them to me in a direct message. Thank you!

Sponsor

I've partnered with Apex Hosting! In my experience, their servers are lag-free, easy to manage, and of high quality. Check them out here:

Aims

RandomPatches aims to be a highly configurable collection of bug fixes and quality of life improvements for Minecraft, and additionally to allow several hardcoded settings to be configured.

When installed on a client, RandomPatches should be completely compatible with servers without the mod, and when installed on a server, it should be completely compatible with clients without the mod. As a result, clients can connect to a server with a different version of the mod to the one on the server. Furthermore, RandomPatches contains no features that require the mod to be installed both on the client and the server.

By default, RandomPatches aims to be as non-invasive as possible—there are no breaking changes to game mechanics or conspicuous GUI additions. Indeed, with the default settings, the mod should be virtually unnoticeable when one is not specifically looking for it. In addition, RandomPatches should automatically disable any of its features that are implemented by another mod in order to preserve compatibility wherever possible.

How is RandomPatches different from RandomTweaks?

RandomPatches aims to not add or significantly modify any game mechanics. For instance, auto-third person is a new minor game mechanic, so it belongs in RandomTweaks. The distinction is blurrier for certain features—in these instances, features that require mixins in the Forge version, such as removing the glowing effect from potions, and bug fixes, such as the cauldron translucency fix, are put in RandomPatches.

Features

Features without a specified side are server-sided.

Connection timeouts

In vanilla Minecraft, the connection timeouts are hardcoded, and often not long enough for slower computers or heavier modded instances. To counter this, RandomPatches allows several connection timeouts to be configured:

  • The connection read timeout
    • Both client and server-sided
    • Raised to 120 seconds from the vanilla value of 30 seconds by default
  • The login timeout
    • How long the server waits for a player to log in
    • Raised to 2400 ticks (120 seconds) from the vanilla value of 600 ticks (30 seconds) by default
  • The KeepAlive timeout
    • How long the server waits for a player to return a KeepAlive packet before disconnecting them
    • Raised to 120 seconds from the vanilla value of 30 seconds by default

In addition, RandomPatches allows the interval at which KeepAlive packets are sent to clients to be configured, although it is recommended that this be left at the vanilla value of 15 seconds.

Packet size limits

RandomPatches allows several packet size limits to be configured, which by default are raised from the vanilla limits:

  • Maximum compressed packet size
    • This option is both client and server-sided.
    • Setting this to a higher value than the vanilla limit can fix MC-185901, which may cause players to be disconnected.
  • Maximum NBT compound tag packet size
    • This option is both client and server-sided.
    • Setting this to a higher value than the vanilla limit may prevent players from being disconnected.
  • Maximum client custom payload packet size
    • Setting this to a higher value than the vanilla limit may prevent the client from being disconnected.

This feature makes XL Packets redundant, but the maximum compressed packet size and maximum NBT compound tag packet size cannot be configured when XL Packets is installed.

This feature is made redundant by Krypton, a network optimization mod. Check it out if you want!

Player speed limits

In vanilla Minecraft, the player speed limits are hardcoded, and set to values that are often not high enough in certain cases. As a result, rubber banding occurs, and [Player] moved too quickly! is spammed in the log. To prevent this, RandomPatches changes the following player speed limits to a higher value by default:

  • Default maximum player speed
  • Maximum player elytra speed
  • Maximum player vehicle speed

This fixes MC-90062.

Boat options

The following options related to boats can be modified:

  • Boat buoyancy under flowing water
    • In vanilla Minecraft, this is set to a negative value, causing it to be impossible for boats to flow up when they move up into a higher block of water.
    • This problem is reported as MC-91206, and has been marked as "Works As Intended".
    • By default, RandomPatches sets this to a positive value to counteract this.
  • Underwater boat passenger delay
    • This is how long it takes for a boat passenger to be ejected when underwater.
    • This can be set to -1 to disable underwater boat passenger ejection.

Disable DataFixerUpper

This disables the execution of DataFixerUpper, reducing RAM usage and decreasing the Minecraft loading time. However, this feature is disabled by default, and enabling it is not recommended, as DataFixerUpper is responsible for the backwards compatibility of worlds. Even so, if you insist on disabling DataFixerUpper:

  • Ensure you have used the Optimize feature on any worlds from previous versions of Minecraft before enabling this feature.
  • Before migrating worlds to new versions of Minecraft, ensure this feature is disabled, and use the Optimize feature again before re-enabling it.
  • Take regular backups of your worlds.

Although worlds last played on an older or newer version of Minecraft theoretically cannot be loaded when DataFixerUpper is disabled by RandomPatches, it's better to be safe than sorry.

To be clear, RandomPatches is not responsible for any damage caused by this feature.

Because of floating point precision errors, the bounding box of an entity can be calculated as smaller than the expected value. When the entity is saved then reloaded, the bounding box may be recomputed such that it intersects a wall. To counter this, RandomPatches stores the bounding box when an entity is saved, then makes it use the same bounding box when it is loaded.

For more information, see this Reddit post from which this fix comes from.

Fix animal breeding hearts

RandomPatches fixes animals which can breed only showing hearts once instead of continuously. Thanks to Fuzs_ for finding this fix!

This bug is reported as MC-93826.

Fix duplicate entity UUIDs

RandomPatches fixes duplicate entity UUIDs and the resulting log spam by assigning new UUIDs to the affected entities. This fix was found by CAS_ual_TY.

This bug is reported as MC-95649.

Fix recipe book not moving ingredients with tags

In vanilla Minecraft, the recipe book does not automatically transfer ingredients with NBT tags to the crafting grid. RandomPatches fixes this issue.

This bug is reported as MC-129057.

This feature is disabled if Nbt Crafting is installed.

Fix entities not being considered wet in cauldrons

In vanilla Minecraft, entities are not considered wet in cauldrons filled with water. RandomPatches fixes this issue, allowing players to use Riptide in cauldrons filled with water, fixing MC-145311. In addition, this fix allows players to receive the Conduit Power effect in cauldrons filled with water.

It should be noted that the MC-145311 fix works client-side only. Please be mindful of server rules when using this feature.

Fix mobs not crossing rails

In vanilla Minecraft, mobs are unable to cross rails. RandomPatches fixes this issue.

This bug is reported as MC-33359, and has been marked as "Works as Intended".

Fix boat fall damage

In vanilla Minecraft, boats and players in boats do not take fall damage. RandomPatches fixes this issue.

This bug is reported as both MC-98160 and MC-105103.

Fix player head stacking

In vanilla Minecraft, player heads from the same player sometimes do not stack. RandomPatches fixes this issue by forcing Minecraft to treat two player heads as equal if they are from the same player, and by default, if they have the same texture URL.

This bug is reported as MC-100044.

Fix water in cauldrons rendering as opaque (client-sided)

In vanilla Minecraft, water in cauldrons renders as opaque. RandomPatches fixes this issue by making them render as translucent as intended.

Without RandomPatches:

Water in cauldron without RandomPatches

With RandomPatches:

Water in cauldron with RandomPatches

This bug is reported as MC-13187.

Fix end portals only rendering from above (client-sided)

In vanilla Minecraft, end portals only render from above. RandomPatches fixes this issue.

Without RandomPatches:

End portal rendering without RandomPatches

With RandomPatches:

End portal rendering with RandomPatches

This bug is reported as MC-3366.

Fix villager robe textures (client-sided)

In vanilla Minecraft, only 18 out of 20 rows of pixels show of villager robe textures. This issue also affects witches. RandomPatches fixes this issue.

Without RandomPatches:

Villager robe textures without RandomPatches

With RandomPatches:

Villager robe textures with RandomPatches

This bug is reported as MC-53312.

Fix invisible player model (client-sided)

In certain instances in vanilla Minecraft, the player model sometimes disappears. This is most noticeable when flying with elytra in a straight line in third-person mode:

Invisible player model bug

RandomPatches fixes this issue. Again, thanks to Fuzs_ for finding this fix!

Key bindings (client-sided)

RandomPatches makes the narrator toggle key binding configurable in the controls screen, fixing MC-122645. If Amecs is installed, this key binding is set to Control + b by default, which is the vanilla default. Otherwise, it is unbound by default.

In addition, RandomPatches makes the following key bindings configurable, largely fixing MC-147718:

  • Pause
    • This is only for pausing and unpausing the game; the Escape key is still used to close GUI screens.
  • Toggle GUI
  • Toggle Debug Info
  • The F3 key is still used for F3 actions.

Furthermore, RandomPatches adds a second configurable key binding for sprinting, which allows the double-tap sprint functionality to be disabled, fixing MC-203401. Moreover, RandomPatches allows double-tap sprinting while flying, fixing MC-68453.

Additionally, RandomPatches adds a dismount key binding, which allows the dismount key to be different from the sneak key.

Window title and icon (client-sided)

By default, RandomPatches removes the annoying * in the Minecraft window title that indicates that the game is modded. In addition, the following window properties can be configured:

  • Title
    • Several variables are provided:
      • ${mcversion}: Minecraft version
      • ${activity}: Current activity (not available in the normal title)
      • ${username}: Username
      • ${modsloaded}: Number of mods loaded
      • ${modversion:modid}: Version of the mod with the specified ID
    • '$' can be escaped by using an extra '$'.
  • 16x16 icon
  • 32x32 icon
  • 256x256 icon (only takes effect on Mac OS X)

Optimize bamboo rendering (client-sided)

RandomPatches optimizes bamboo rendering. This works by overriding the method that returns the ambient occlusion light value for the bamboo block, which runs some expensive logic, but always returns 1.0F.

Thanks to darkevilmac for finding this fix!

Remove glowing effect from potions (client-sided)

By default, RandomPatches removes the glowing effect from potions, making potion colors more visible.

Without RandomPatches:

Potions without RandomPatches

With RandomPatches:

Potions with RandomPatches

Remove glowing effect from enchanted books (client-sided)

RandomPatches can remove the glowing effect from enchanted books. This feature is disabled by default.

Without RandomPatches:

Enchanted books without RandomPatches

With RandomPatches:

Enchanted books with RandomPatches

Disable experimental settings warning (client-sided)

By default, RandomPatches disables the warning that displays when loading a world that uses experimental settings:

Experimental settings warning

Framerate limit slider step size (client-sided)

In vanilla Minecraft, the framerate limit slider step size is 10.0. RandomPatches changes this to 1.0 by default.

This does not work when OptiFine is installed.

Return to main menu after disconnect (client-sided)

This feature makes Minecraft return to the main menu screen after disconnecting rather than the Realms or multiplayer screen.

Configuration

The RandomPatches configuration can be found at config/randompatches.toml.

  • All properties and categories should be well-commented such that there is little need for further explanation.
  • All configuration values should be automatically validated and reset if they are invalid.
  • A configuration GUI can be accessed from Mod Menu.
  • In case of unaddressed compatibility issues, individual mixins can be disabled through the mixin blacklist.
    • Most mixins are not automatically disabled when the features that depend on them are.
    • This is done to allow features to be enabled or disabled in-game without the need for restarts.
    • A list of these mixins can be found in the comments for the mixin blacklist.
    • Please report an issue if you need to use the mixin blacklist to resolve a conflict.
  • The configuration can be reloaded from disk in-game through the use of a command (/rpconfigreload by default).

randompatches's People

Contributors

naheulf avatar therandomlabs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

randompatches's Issues

Exception in server tick loop

---- Minecraft Crash Report ----

WARNING: coremods are present:
ApotheosisCore (Apotheosis-1.12.2-1.9.3.jar)
BedPatch (bedpatch-2.2-1.12.2.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.5-1.12.2.jar)
CorePlugin (SmoothFont-mc1.12.2-2.0-alpha-11.jar)
AppleCore (AppleCore-mc1.12.2-3.2.0.jar)
CoreMod (Aroma1997Core-1.12.2-2.0.0.2.b164.jar)
TransformerLoader (OpenComputers-MC1.12.2-1.7.4.153.jar)
AstralCore (astralsorcery-1.12.2-1.10.17.jar)
SqueezerCore (SqueezerPatch-1.12.2-1.0.0.jar)
ForgelinPlugin (Forgelin-1.8.2.jar)
CTMCorePlugin (CTM-MC1.12.2-0.3.3.22.jar)
EnderCorePlugin (EnderCore-1.12.2-0.5.56-core.jar)
RandomPatches (randompatches-1.12.2-1.13.0.0.jar)
BNBGamingCore (BNBGamingCore-1.12.2-0.11.0.jar)
MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)
SurgeLoadingPlugin (Surge-1.12.2-2.0.77.jar)
Contact their authors BEFORE contacting forge

// I feel sad now :(

Time: 5/23/19 11:06 PM
Description: Exception in server tick loop

java.lang.NoClassDefFoundError: net/minecraft/client/Minecraft
at com.therandomlabs.randompatches.patch.NBTTagCompoundPatch.areTagMapsEqual(NBTTagCompoundPatch.java:116)
at net.minecraft.nbt.NBTTagCompound.equals(NBTTagCompound.java:460)
at net.minecraftforge.items.ItemHandlerHelper.canItemStacksStack(ItemHandlerHelper.java:60)
at net.minecraftforge.items.wrapper.InvWrapper.insertItem(InvWrapper.java:86)
at net.minecraftforge.items.ItemHandlerHelper.insertItem(ItemHandlerHelper.java:45)
at org.cyclops.commoncapabilities.ingredient.storage.IngredientComponentStorageWrapperHandlerItemStack$ComponentStorageWrapper.insert(IngredientComponentStorageWrapperHandlerItemStack.java:139)
at org.cyclops.commoncapabilities.ingredient.storage.IngredientComponentStorageWrapperHandlerItemStack$ComponentStorageWrapper.insert(IngredientComponentStorageWrapperHandlerItemStack.java:97)
at org.cyclops.integrateddynamics.core.network.IngredientChannelAdapter.insert(IngredientChannelAdapter.java:129)
at org.cyclops.cyclopscore.ingredient.storage.IngredientStorageHelpers.insertIngredientQuantity(IngredientStorageHelpers.java:709)
at org.cyclops.cyclopscore.ingredient.storage.IngredientStorageHelpers.insertIngredient(IngredientStorageHelpers.java:733)
at org.cyclops.cyclopscore.ingredient.storage.IngredientStorageHelpers.moveIngredientsSlotted(IngredientStorageHelpers.java:374)
at org.cyclops.cyclopscore.ingredient.storage.IngredientStorageHelpers.moveIngredientsSlotted(IngredientStorageHelpers.java:299)
at org.cyclops.integratedtunnels.core.TunnelHelpers.moveSingle(TunnelHelpers.java:51)
at org.cyclops.integratedtunnels.core.TunnelHelpers.moveSingleStateOptimized(TunnelHelpers.java:104)
at org.cyclops.integratedtunnels.part.aspect.TunnelAspectWriteBuilders$Item.lambda$static$14(TunnelAspectWriteBuilders.java:583)
at org.cyclops.integrateddynamics.core.part.aspect.build.AspectBuilder$BuiltWriter.write(AspectBuilder.java:428)
at org.cyclops.integrateddynamics.part.aspect.write.AspectWriteBase.update(AspectWriteBase.java:57)
at org.cyclops.integrateddynamics.core.part.aspect.build.AspectBuilder$BuiltWriter.update(AspectBuilder.java:451)
at org.cyclops.integrateddynamics.core.part.write.PartTypeWriteBase.update(PartTypeWriteBase.java:96)
at org.cyclops.integrateddynamics.core.part.write.PartTypeWriteBase.update(PartTypeWriteBase.java:48)
at org.cyclops.integrateddynamics.core.network.PartNetworkElement.update(PartNetworkElement.java:134)
at org.cyclops.integrateddynamics.core.network.Network.update(Network.java:408)
at org.cyclops.integrateddynamics.core.TickHandler.onTick(TickHandler.java:65)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_826_TickHandler_onTick_TickEvent.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)
at net.minecraftforge.fml.common.FMLCommonHandler.onPostServerTick(FMLCommonHandler.java:266)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:712)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.ClassNotFoundException: net.minecraft.client.Minecraft
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 30 more
Caused by: net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@5e8604bf from coremod FMLCorePlugin
at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:260)
at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279)
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176)
... 32 more
Caused by: java.lang.RuntimeException: Attempted to load class bib for invalid side SERVER
at net.minecraftforge.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:62)
at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256)
... 34 more

A detailed walkthrough of the error, its code path and all known details is as follows:

-- System Details --
Details:
Minecraft Version: 1.12.2
Operating System: Linux (amd64) version 3.10.0-957.1.3.el7.x86_64
Java Version: 1.8.0_181, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 236520736 bytes (225 MB) / 737673216 bytes (703 MB) up to 5726797824 bytes (5461 MB)
JVM Flags: 6 total; -Xms256M -Xmx6144M -XX:+CMSIncrementalPacing -XX:+CMSClassUnloadingEnabled -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.42 Powered by Forge 14.23.5.2831 199 mods loaded, 199 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                | 2706805.jar                                     | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LCHIJA | forge                    | 14.23.5.2831             | 2706805.jar                                     | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LCHIJA | smoothfontcore           | mc1.12.2-2.0-alpha-7     | minecraft.jar                                   | None                                     |
| LCHIJA | bnbgamingcore            | 0.11.0                   | minecraft.jar                                   | None                                     |
| LCHIJA | foamfixcore              | 7.7.4                    | minecraft.jar                                   | None                                     |
| LCHIJA | opencomputers|core       | 1.7.4.153                | minecraft.jar                                   | None                                     |
| LCHIJA | randompatches            | 1.12.2-1.13.0.0          | randompatches-1.12.2-1.13.0.0.jar               | None                                     |
| LCHIJA | advancementbook          | 1.0.3                    | Advancement_Book-1.12-1.0.3.jar                 | None                                     |
| LCHIJA | appliedenergistics2      | rv6-stable-6             | appliedenergistics2-rv6-stable-6.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 | animalcrops              | 1.12.2-0.2.0             | AnimalCrops-1.12.2-0.2.0.jar                    | None                                     |
| LCHIJA | placebo                  | 1.6.0                    | Placebo-1.12.2-1.6.0.jar                        | None                                     |
| LCHIJA | apotheosis               | 1.9.3                    | Apotheosis-1.12.2-1.9.3.jar                     | None                                     |
| LCHIJA | applecore                | 3.2.0                    | AppleCore-mc1.12.2-3.2.0.jar                    | None                                     |
| LCHIJA | baubles                  | 1.5.2                    | Baubles-1.12-1.5.2.jar                          | None                                     |
| LCHIJA | statues                  | 0.8.7.2                  | statues-1.12.X-0.8.7.2.jar                      | None                                     |
| LCHIJA | crafttweaker             | 4.1.17                   | CraftTweaker2-1.12-4.1.17.jar                   | None                                     |
| LCHIJA | mtlib                    | 3.0.6                    | MTLib-3.0.6.jar                                 | None                                     |
| LCHIJA | modtweaker               | 4.0.17                   | modtweaker-4.0.17.jar                           | None                                     |
| LCHIJA | bookshelf                | 2.3.577                  | Bookshelf-1.12.2-2.3.577.jar                    | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | gamestages               | 2.0.114                  | GameStages-1.12.2-2.0.114.jar                   | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | recipestages             | 1.1.1                    | RecipeStages-1.1.1.jar                          | None                                     |
| LCHIJA | primitivecrafting        | 1.3.1                    | PrimitiveCrafting+MC1.12.2+v1.3.1.jar           | 55e88f24d04398481ae6f1ce76f65fd776f14227 |
| LCHIJA | jei                      | 4.15.0.278               | jei_1.12.2-4.15.0.278.jar                       | None                                     |
| LCHIJA | appleskin                | 1.0.9                    | AppleSkin-mc1.12-1.0.9.jar                      | None                                     |
| LCHIJA | aroma1997core            | 2.0.0.2.b164             | Aroma1997Core-1.12.2-2.0.0.2.b164.jar           | dfbfe4c473253d8c5652417689848f650b2cbe32 |
| LCHIJA | aromabackup              | 3.0.0.0.b117             | AromaBackup-1.12.2-3.0.0.0.b117.jar             | dfbfe4c473253d8c5652417689848f650b2cbe32 |
| LCHIJA | aromabackuprecovery      | 3.0.0.0.b117             | AromaBackup-1.12.2-3.0.0.0.b117.jar             | dfbfe4c473253d8c5652417689848f650b2cbe32 |
| LCHIJA | astralsorcery            | 1.10.17                  | astralsorcery-1.12.2-1.10.17.jar                | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |
| LCHIJA | waila                    | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                     | None                                     |
| LCHIJA | bdsandm                  | 0.0.22                   | BarrelsDrumsStorageAndMore-0.0.22.jar           | None                                     |
| LCHIJA | base                     | 3.11.0                   | base-1.12.2-3.11.0.jar                          | None                                     |
| LCHIJA | bedpatch                 | 2.2                      | bedpatch-2.2-1.12.2.jar                         | 6bf7527e690fb5e8719b9832bce5000a3e87dfe6 |
| LCHIJA | bibliocraft              | 2.4.5                    | BiblioCraft[v2.4.5][MC1.12.2].jar               | None                                     |
| LCHIJA | bnbgaminglib             | 2.17.6                   | BNBGamingLib-1.12.2-2.17.6.jar                  | None                                     |
| LCHIJA | bonsaitrees              | 1.1.2                    | bonsaitrees-1.1.2-b144.jar                      | None                                     |
| LCHIJA | bouncy_creepers          | 0.0.4                    | BouncyCreepers-0.0.4.jar                        | None                                     |
| LCHIJA | buildinggadgets          | 2.6.8                    | BuildingGadgets-2.6.8.jar                       | None                                     |
| LCHIJA | caliper                  | 1.1.43                   | Caliper-1.12.2-1.1.43.jar                       | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | calmdownzombieguy        | 1.0.0                    | CalmDownZombieGuy-1.12.2-1.0.0.jar              | None                                     |
| LCHIJA | carryon                  | 1.12.1                   | CarryOn+MC1.12.2+v1.12.1.jar                    | 55e88f24d04398481ae6f1ce76f65fd776f14227 |
| LCHIJA | chisel                   | MC1.12.2-0.2.1.35        | Chisel-MC1.12.2-0.2.1.35.jar                    | None                                     |
| LCHIJA | mantle                   | 1.12-1.3.3.49            | Mantle-1.12-1.3.3.49.jar                        | None                                     |
| LCHIJA | twilightforest           | 3.8.689                  | twilightforest-1.12.2-3.8.689-universal.jar     | None                                     |
| LCHIJA | tconstruct               | 1.12.2-2.12.0.135        | TConstruct-1.12.2-2.12.0.135.jar                | None                                     |
| LCHIJA | ceramics                 | 1.12-1.3.7               | Ceramics-1.12-1.3.7.jar                         | None                                     |
| LCHIJA | chargers                 | 1.2.0.4                  | Chargers-1.12.2-1.2.0.4.jar                     | 58e787c8aafad8b327883f94d4fa544f936d7b01 |
| LCHIJA | chineseworkshop          | 1.2.6                    | ChineseWorkshop-1.12.2_1.2.6.jar                | None                                     |
| LCHIJA | chiselsandbits           | 14.31                    | chiselsandbits-14.31.jar                        | None                                     |
| LCHIJA | clickmachine             | 1.2.0                    | ClickMachine-1.12.2-1.2.0.jar                   | None                                     |
| LCHIJA | clumps                   | 3.1.2                    | Clumps-3.1.2.jar                                | None                                     |
| LCHIJA | codechickenlib           | 3.2.2.353                | CodeChickenLib-1.12.2-3.2.2.353-universal.jar   | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
| LCHIJA | redstoneflux             | 2.1.0                    | RedstoneFlux-1.12-2.1.0.6-universal.jar         | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCHIJA | cofhcore                 | 4.6.2                    | CoFHCore-1.12.2-4.6.2.25-universal.jar          | None                                     |
| LCHIJA | cofhworld                | 1.3.0                    | CoFHWorld-1.12.2-1.3.0.6-universal.jar          | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCHIJA | cyclopscore              | 1.0.6                    | CyclopsCore-1.12.2-1.0.6.jar                    | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
| LCHIJA | commoncapabilities       | 2.1.0                    | CommonCapabilities-1.12.2-2.1.0.jar             | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
| LCHIJA | compactmachines3         | 3.0.17                   | compactmachines3-1.12.2-3.0.17-b267.jar         | None                                     |
| LCHIJA | compactstorage           | 3.1                      | CompactStorage-3.1-12.jar                       | None                                     |
| LCHIJA | compatched               | 1.6.0                    | ComPatchedStorage-1.12.2-1.6.0.jar              | None                                     |
| LCHIJA | contenttweaker           | 1.12.2-4.9.1             | ContentTweaker-1.12.2-4.9.1.jar                 | None                                     |
| LCHIJA | conarm                   | 1.2.3                    | conarm-1.12.2-1.2.3.jar                         | 5d5b8aee896a4f5ea3f3114784742662a67ad32f |
| LCHIJA | cookingforblockheads     | 6.4.70                   | CookingForBlockheads_1.12.2-6.4.70.jar          | None                                     |
| LCHIJA | crafttweakerjei          | 2.0.3                    | CraftTweaker2-1.12-4.1.17.jar                   | None                                     |
| LCHIJA | cucumber                 | 1.1.3                    | Cucumber-1.12.2-1.1.3.jar                       | None                                     |
| LCHIJA | culinaryconstruct        | 1.3.2.1                  | culinaryconstruct-1.3.2.1.jar                   | 5d5b8aee896a4f5ea3f3114784742662a67ad32f |
| LCHIJA | fastbench                | 1.7.0                    | FastWorkbench-1.12.2-1.7.0.jar                  | None                                     |
| LCHIJA | cyclicmagic              | 1.19.8                   | Cyclic-1.12.2-1.19.8.jar                        | 1bc8f8dbe770187a854cef35dad0ff40ba441bbe |
| LCHIJA | darkutils                | 1.8.226                  | DarkUtils-1.12.2-1.8.226.jar                    | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | thermalfoundation        | 2.6.2                    | ThermalFoundation-1.12.2-2.6.2.26-universal.jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCHIJA | deepmoblearning          | 1.12.2-2.5.0             | deepmoblearning-1.12.2-2.5.0-universal.jar      | None                                     |
| LCHIJA | dimstages                | 2.0.23                   | DimensionStages-1.12.2-2.0.23.jar               | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | dragonmurder             | 1.0.1                    | DragonMurder-1.12.2-1.0.1.jar                   | None                                     |
| LCHIJA | elevatorid               | 1.3.10                   | ElevatorMod-1.12.2-1.3.10.jar                   | None                                     |
| LCHIJA | endercore                | 1.12.2-0.5.56            | EnderCore-1.12.2-0.5.56.jar                     | None                                     |
| LCHIJA | endercrop                | 1.12.2-1.6.0             | endercrop-1.12.2-1.6.0.jar                      | None                                     |
| LCHIJA | enderstorage             | 2.4.5.135                | EnderStorage-1.12.2-2.4.5.135-universal.jar     | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
| LCHIJA | enderutilities           | 0.7.12                   | enderutilities-1.12.2-0.7.12.jar                | 2b03e1423915a189b8094816baa18f239d576dff |
| LCHIJA | extendedcrafting         | 1.5.4                    | ExtendedCrafting-1.12.2-1.5.4.jar               | None                                     |
| LCHIJA | extracells               | 2.6.2                    | ExtraCells-1.12.2-2.6.2a.jar                    | None                                     |
| LCHIJA | farmingforblockheads     | 3.1.26                   | FarmingForBlockheads_1.12.2-3.1.26.jar          | None                                     |
| LCHIJA | fastfurnace              | 1.2.2                    | FastFurnace-1.12.2-1.2.2.jar                    | None                                     |
| LCHIJA | fenceoverhaul            | 1.3.4                    | FenceOverhaul-1.3.4.jar                         | None                                     |
| LCHIJA | findme                   | 1.1.0                    | findme-1.12.2-1.1.0-8.jar                       | None                                     |
| LCHIJA | slabmachines             | 1.0.5                    | Slab_Machines-1.0.5.jar                         | None                                     |
| LCHIJA | mcmultipart              | 2.5.3                    | MCMultiPart-2.5.3.jar                           | None                                     |
| LCHIJA | mekanism                 | 1.12.2-9.7.2.373         | Mekanism-1.12.2-9.7.2.373.jar                   | None                                     |
| LCHIJA | sonarcore                | 5.0.19                   | sonarcore-1.12.2-5.0.19-20.jar                  | None                                     |
| LCHIJA | fluxnetworks             | 3.0.19                   | fluxnetworks-1.12.2-3.0.19-21.jar               | None                                     |
| LCHIJA | foamfix                  | 0.10.5-1.12.2            | foamfix-0.10.5-1.12.2.jar                       | None                                     |
| LCHIJA | forgelin                 | 1.8.2                    | Forgelin-1.8.2.jar                              | None                                     |
| LCHIJA | forgemultipartcbe        | 2.6.1.81                 | ForgeMultipart-1.12.2-2.6.1.81-universal.jar    | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
| LCHIJA | microblockcbe            | 2.6.1.81                 | ForgeMultipart-1.12.2-2.6.1.81-universal.jar    | None                                     |
| LCHIJA | minecraftmultipartcbe    | 2.6.1.81                 | ForgeMultipart-1.12.2-2.6.1.81-universal.jar    | None                                     |
| LCHIJA | forgivingvoid            | 1.0.22                   | ForgivingVoid_1.12.2-1.0.22.jar                 | None                                     |
| LCHIJA | guideapi                 | 1.12-2.1.8-63            | Guide-API-1.12-2.1.8-63.jar                     | None                                     |
| LCHIJA | headcrumbs               | 2.0.4                    | Headcrumbs-1.12.2-2.0.5.17.jar                  | None                                     |
| LCHIJA | horsepower               | 2.6.3                    | HorsePower-1.12.2-2.6.3.72.jar                  | cd7e958342770a8b17c919055da42c24dfefd879 |
| LCHIJA | huntingdim               | 1.0.37                   | HuntingDimension-1.12.2-1.0.37.jar              | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | hydrogel                 | 1.1.0                    | HydroGel-1.12.2-1.1.0.jar                       | None                                     |
| LCHIJA | ichunutil                | 7.2.0                    | iChunUtil-1.12.2-7.1.4.jar                      | None                                     |
| LCHIJA | incontrol                | 3.9.6                    | incontrol-1.12-3.9.6.jar                        | None                                     |
| LCHIJA | teslacorelib             | 1.0.15                   | tesla-core-lib-1.12.2-1.0.15.jar                | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | industrialforegoing      | 1.12.2-1.12.2            | industrialforegoing-1.12.2-1.12.11-235.jar      | None                                     |
| LCHIJA | inspirations             | 1.12.2-0.2.4             | Inspirations-1.12.2-0.2.4.jar                   | None                                     |
| LCHIJA | integrateddynamics       | 1.0.8                    | IntegratedDynamics-1.12.2-1.0.8.jar             | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
| LCHIJA | integrateddynamicscompat | 1.0.0                    | IntegratedDynamics-1.12.2-1.0.8.jar             | None                                     |
| LCHIJA | integratedtunnels        | 1.6.7                    | IntegratedTunnels-1.12.2-1.6.7.jar              | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
| LCHIJA | integratedtunnelscompat  | 1.0.0                    | IntegratedTunnels-1.12.2-1.6.7.jar              | None                                     |
| LCHIJA | inventorysorter          | 1.13.3+57                | inventorysorter-1.12.2-1.13.3+57.jar            | None                                     |
| LCHIJA | ironjetpacks             | 1.1.0                    | IronJetpacks-1.12-2-1.1.0.jar                   | None                                     |
| LCHIJA | itemstages               | 2.0.49                   | ItemStages-1.12.2-2.0.49.jar                    | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | journeymap               | 1.12.2-5.5.4             | journeymap-1.12.2-5.5.4.jar                     | None                                     |
| LCHIJA | kleeslabs                | 5.4.11                   | KleeSlabs_1.12.2-5.4.11.jar                     | None                                     |
| LCHIJA | limitlessstructureblocks | 1.1.0                    | LimitlessStructureBlocks-1.12.2-1.1.0.jar       | None                                     |
| LCHIJA | lostcities               | 2.0.17                   | lostcities-1.12-2.0.17.jar                      | None                                     |
| LCHIJA | malisiscore              | 1.12.2-6.5.1-SNAPSHOT    | malisiscore-1.12.2-6.5.1.jar                    | None                                     |
| LCHIJA | malisisdoors             | 1.12.2-7.3.0             | malisisdoors-1.12.2-7.3.0.jar                   | None                                     |
| LCHIJA | mcjtylib_ng              | 3.1.1                    | mcjtylib-1.12-3.1.1.jar                         | None                                     |
| LCHIJA | mekanismgenerators       | 1.12.2-9.7.2.373         | MekanismGenerators-1.12.2-9.7.2.373.jar         | None                                     |
| LCHIJA | mercurius                | 1.0.6                    | Mercurius-1.12.2.jar                            | None                                     |
| LCHIJA | mob_grinding_utils       | 0.3.13                   | MobGrindingUtils-0.3.13.jar                     | None                                     |
| LCHIJA | mobstages                | 2.0.13                   | MobStages-1.12.2-2.0.13.jar                     | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | morecauldrons            | 1.4.3                    | More-Cauldrons-1.4.3.jar                        | None                                     |
| LCHIJA | morebuckets              | 1.0.4                    | MoreBuckets-1.12.2-1.0.4.jar                    | None                                     |
| LCHIJA | morpheus                 | 1.12.2-3.5.106           | Morpheus-1.12.2-3.5.106.jar                     | None                                     |
| LCHIJA | mputils                  | 1.5.6                    | MPUtils-1.12.2-1.5.7.jar                        | None                                     |
| LCHIJA | mpbasic                  | 1.4.7                    | mpbasic-1.12.2-1.4.11.jar                       | None                                     |
| LCHIJA | mystcraft                | 0.13.7.03                | mystcraft-1.12.2-0.13.7.03.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 | nuclearcraft             | 2.16e                    | NuclearCraft-2.16e-1.12.2.jar                   | None                                     |
| LCHIJA | opencomputers            | 1.7.4.153                | OpenComputers-MC1.12.2-1.7.4.153.jar            | None                                     |
| LCHIJA | xnet                     | 1.7.6                    | xnet-1.12-1.7.6.jar                             | None                                     |
| LCHIJA | ocxnetdriver             | 1.0.3                    | ocxnetdriver-1.0.3-b17.jar                      | None                                     |
| LCHIJA | ogdragon                 | 0.1.4                    | ogdragon-1.12.2-0.1.4.jar                       | None                                     |
| LCHIJA | oreexcavation            | 1.4.137                  | OreExcavation-1.4.137.jar                       | None                                     |
| LCHIJA | prestige                 | 1.1.52                   | Prestige-1.12.2-1.1.52.jar                      | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | parabox                  | 1.1.4                    | Parabox-1.12.2-1.1.4.jar                        | None                                     |
| LCHIJA | pickletweaks             | 2.1.3                    | PickleTweaks-1.12.2-2.1.3.jar                   | None                                     |
| LCHIJA | planefix                 | 1.0.0                    | PlaneFix-1.12.2-1.0.0.jar                       | None                                     |
| LCHIJA | portalgun                | 7.1.0                    | PortalGun-1.12.2-7.1.0.jar                      | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |
| LCHIJA | practicallogistics2      | 3.0.8                    | practicallogistics2-1.12.2-3.0.8-11.jar         | None                                     |
| LCHIJA | projecte                 | 1.12.2-PE1.4.0           | ProjectE-1.12.2-PE1.4.0.jar                     | None                                     |
| LCHIJA | rangedpumps              | 0.5                      | rangedpumps-0.5.jar                             | None                                     |
| LCHIJA | realfilingcabinet        | 0.1.84                   | realfilingcabinet-1.12.1-0.1.84.jar             | None                                     |
| LCHIJA | resourcehogs             | 1.0.11                   | ResourceHogs-1.12.2-1.0.11.jar                  | None                                     |
| LCHIJA | rftoolspower             | 1.1.2                    | rftoolspower-1.12-1.1.2.jar                     | None                                     |
| LCHIJA | rustic                   | 1.0.15                   | rustic-1.0.15.jar                               | None                                     |
| LCHIJA | valkyrielib              | 1.12.2-2.0.20.1          | valkyrielib-1.12.2-2.0.20.1.jar                 | None                                     |
| LCHIJA | simplegenerators         | 1.12.2-2.0.20.2          | simplegenerators-1.12.2-2.0.20.2.jar            | None                                     |
| LCHIJA | storagenetwork           | 1.7.4                    | SimpleStorageNetwork-1.12.2-1.7.4.jar           | 1bc8f8dbe770187a854cef35dad0ff40ba441bbe |
| LCHIJA | skybonsais               | 1.0.1                    | SkyBonsais-1.0.1.jar                            | None                                     |
| LCHIJA | skygrid                  | 1.1.7                    | SkyGrid-1.1.7.jar                               | None                                     |
| LCHIJA | slimyboyos               | 1.0.0                    | SlimyBoyos-1.0.0.jar                            | None                                     |
| LCHIJA | snad                     | 1.12.1-1.7.09.16a        | Snad-1.12.1-1.7.09.16a.jar                      | None                                     |
| LCHIJA | sqpatch                  | 1.0.0                    | SqueezerPatch-1.12.2-1.0.0.jar                  | None                                     |
| LCHIJA | stg                      | 1.12.2-1.2.3             | stg-1.12.2-1.2.3.jar                            | None                                     |
| LCHIJA | sasit                    | 1.1.15                   | StuffASockInIt-1.12.2-1.1.15.jar                | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | supersoundmuffler        | 1.0.2.10                 | supersoundmuffler-1.12.2-1.0.2.10.jar           | None                                     |
| LCHIJA | surge                    | 2.0.77                   | Surge-1.12.2-2.0.77.jar                         | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | sync                     | 7.1.0                    | Sync-1.12.2-7.1.0.jar                           | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |
| LCHIJA | tallgates                | 1.0.0                    | TallGates-1.12.2-1.0.0.1.jar                    | None                                     |
| LCHIJA | telepastries             | 0.3.3                    | TelePastries-0.3.3.jar                          | None                                     |
| LCHIJA | thermaldynamics          | 2.5.4                    | ThermalDynamics-1.12.2-2.5.4.18-universal.jar   | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCHIJA | thermalinnovation        | 0.3.2                    | ThermalInnovation-1.12.2-0.3.2.11-universal.jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCHIJA | tcomplement              | ${version}               | TinkersComplement-1.12.2-0.4.0.jar              | None                                     |
| LCHIJA | tinkertoolleveling       | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar             | None                                     |
| LCHIJA | tp                       | 3.2.32                   | tinyprogressions-1.12.2-3.3.32-Release.jar      | None                                     |
| LCHIJA | togetherforever          | 1.0.2                    | togetherforever-1.12.2-1.0.12-22.jar            | None                                     |
| LCHIJA | tombstone                | 3.3.4                    | tombstone-3.3.4-1.12.jar                        | None                                     |
| LCHIJA | topography               | 1.5.1                    | Topography-1.12.2-1.5.1.jar                     | None                                     |
| LCHIJA | torchmaster              | 1.7.1.74                 | torchmaster_1.12.2-1.7.1.74.jar                 | 5e9a436b366831c8f54a7e80b015784da69278c6 |
| LCHIJA | translocators            | 2.5.1.77                 | Translocators-1.12.2-2.5.1.77-universal.jar     | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
| LCHIJA | treegrowingsimulator     | 0.0.4                    | TreeGrowingSimulator2017-1.0.1.jar              | None                                     |
| LCHIJA | triumph                  | 3.17.0                   | Triumph-1.12.2-3.17.0.jar                       | None                                     |
| LCHIJA | twitchcrumbs             | 3.0.4                    | Twitchcrumbs_1.12.2-3.0.4.jar                   | None                                     |
| LCHIJA | uppers                   | 0.0.6                    | Uppers-0.0.6.jar                                | None                                     |
| LCHIJA | universalmodifiers       | 1.12.2-1.0.16.1          | valkyrielib-1.12.2-2.0.20.1.jar                 | None                                     |
| LCHIJA | vc                       | 5.9.13                   | ViesCraft-1.12.2-5.9.13.jar                     | None                                     |
| LCHIJA | waddles                  | 0.6.0                    | Waddles-1.12.2-0.6.0.jar                        | None                                     |
| LCHIJA | wailastages              | 2.0.24                   | WailaStages-1.12.2-2.0.24.jar                   | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | walljump                 | 1.12.2-1.2.3             | walljump-1.12.2-1.2.3.jar                       | None                                     |
| LCHIJA | wawla                    | 2.5.270                  | Wawla-1.12.2-2.5.270.jar                        | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCHIJA | weirdinggadget           | 1.0                      | weirdinggadget-1.12.2-2.0.13-universal.jar      | None                                     |
| LCHIJA | withercrumbs             | @version@                | witherCrumbs-1.12.2-0.11.jar                    | None                                     |
| LCHIJA | worldutils               | 0.4.2                    | worldutils-1.12.2-0.4.2.jar                     | 2b03e1423915a189b8094816baa18f239d576dff |
| LCHIJA | xcpatch                  | 1.0.1                    | XCPatch-1.12.2-1.0.1.jar                        | None                                     |
| LCHIJA | xlfoodmod                | 1.12.2-1.9.0             | XL-Food-Mod-1.12.2-1.9.0.jar                    | None                                     |
| LCHIJA | ynot                     | 0.2.3                    | YNot-0.2.3.jar                                  | None                                     |
| LCHIJA | yoyos                    | 1.12.2-1.2.2.20          | yoyos_1.12.2-1.2.2.20.jar                       | None                                     |
| LCHIJA | zenstages                | 0.4.1-19                 | zenstages-0.4.1-19.jar                          | None                                     |
| LCHIJA | matteroverdrive          | 0.7.0.0                  | MatterOverdrive-1.12.2-0.7.1.0-universal.jar    | None                                     |
| LCHIJA | pipemaster               | 1.0.2                    | PipeMaster-1.0.2-b8.jar                         | None                                     |
| LCHIJA | sky_orchards             | 0.0.12                   | SkyOrchards-0.0.12.jar                          | None                                     |
| LCHIJA | teslacorelib_registries  | 1.0.15                   | tesla-core-lib-1.12.2-1.0.15.jar                | None                                     |

Loaded coremods (and transformers): 

ApotheosisCore (Apotheosis-1.12.2-1.9.3.jar)
shadows.ApotheosisTransformer
BedPatch (bedpatch-2.2-1.12.2.jar)
com.mordenkainen.bedpatch.BedPatchASM
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.5-1.12.2.jar)
pl.asie.foamfix.coremod.FoamFixTransformer
CorePlugin (SmoothFont-mc1.12.2-2.0-alpha-11.jar)
bre.smoothfont.asm.Transformer
AppleCore (AppleCore-mc1.12.2-3.2.0.jar)
squeek.applecore.asm.TransformerModuleHandler
CoreMod (Aroma1997Core-1.12.2-2.0.0.2.b164.jar)

TransformerLoader (OpenComputers-MC1.12.2-1.7.4.153.jar)
li.cil.oc.common.asm.ClassTransformer
AstralCore (astralsorcery-1.12.2-1.10.17.jar)

SqueezerCore (SqueezerPatch-1.12.2-1.0.0.jar)
shadows.squeezer.Transformer
ForgelinPlugin (Forgelin-1.8.2.jar)

CTMCorePlugin (CTM-MC1.12.2-0.3.3.22.jar)
team.chisel.ctm.client.asm.CTMTransformer
EnderCorePlugin (EnderCore-1.12.2-0.5.56-core.jar)
com.enderio.core.common.transform.EnderCoreTransformer
com.enderio.core.common.transform.SimpleMixinPatcher
RandomPatches (randompatches-1.12.2-1.13.0.0.jar)
com.therandomlabs.randompatches.core.RPTransformer
BNBGamingCore (BNBGamingCore-1.12.2-0.11.0.jar)
com.bloodnbonesgaming.bnbgamingcore.core.BNBGamingCoreClassTransformer
MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)

SurgeLoadingPlugin (Surge-1.12.2-2.0.77.jar)

AE2 Version: stable rv6-stable-6 for Forge 14.23.5.2768
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)
	- chiselsandbitsIntegration (Enabled/Not Forced)
	- wailaIntegration (Enabled/Not Forced)

Pulsar/inspirations loaded Pulses: 
	- InspirationsShared (Enabled/Forced)
	- InspirationsBuilding (Enabled/Not Forced)
	- InspirationsUtility (Enabled/Not Forced)
	- InspirationsTools (Enabled/Not Forced)
	- InspirationsRecipes (Enabled/Not Forced)
	- InspirationsTweaks (Enabled/Not Forced)
	- InspirationsShared (Enabled/Forced)
	- WailaPlugin (Enabled/Not Forced)

Pulsar/tcomplement loaded Pulses: 
	- ModuleCommons (Enabled/Forced)
	- ModuleMelter (Enabled/Not Forced)
	- ModuleArmor (Enabled/Not Forced)
	- CeramicsPlugin (Enabled/Not Forced)
	- ChiselPlugin (Enabled/Not Forced)
	- Oredict (Enabled/Forced)

List of loaded APIs: 
	* AppleCoreAPI (3.2.0) from AppleCore-mc1.12.2-3.2.0.jar
	* appliedenergistics2|API (rv6) from appliedenergistics2-rv6-stable-6.jar
	* Base|API (1.0.0) from base-1.12.2-3.11.0.jar
	* Baubles|API (1.4.0.2) from Baubles-1.12-1.5.2.jar
	* betteradvancements|API (0.0.11) from Triumph-1.12.2-3.17.0.jar
	* BetterWithModsAPI (Beta 0.6) from AppleSkin-mc1.12-1.0.9.jar
	* Chisel-API (0.0.1) from Chisel-MC1.12.2-0.2.1.35.jar
	* ChiselAPI|Carving (0.0.1) from Chisel-MC1.12.2-0.2.1.35.jar
	* ChiselsAndBitsAPI (14.25.0) from chiselsandbits-14.31.jar
	* cofhapi (2.5.0) from CoFHCore-1.12.2-4.6.2.25-universal.jar
	* commoncapabilities|api (0.0.1) from CommonCapabilities-1.12.2-2.1.0.jar
	* compactstorage (3.1) from CompactStorage-3.1-12.jar
	* ctm-api (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
	* ctm-api-events (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
	* ctm-api-models (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
	* ctm-api-textures (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
	* ctm-api-utils (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
	* Culinary Construct API (1) from culinaryconstruct-1.3.2.1.jar
	* farmingforblockheads|api (1.0) from FarmingForBlockheads_1.12.2-3.1.26.jar
	* fluxapi (1.0) from fluxnetworks-1.12.2-3.0.19-21.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.1.4.jar
	* industrialforegoingapi (5) from industrialforegoing-1.12.2-1.12.11-235.jar
	* integrateddynamics|api (0.2.0) from IntegratedDynamics-1.12.2-1.0.8.jar
	* journeymap|client-api (1.4) from journeymap-1.12.2-5.5.4.jar
	* journeymap|client-api-display (1.4) from journeymap-1.12.2-5.5.4.jar
	* journeymap|client-api-event (1.4) from journeymap-1.12.2-5.5.4.jar
	* journeymap|client-api-model (1.4) from journeymap-1.12.2-5.5.4.jar
	* journeymap|client-api-util (1.4) from journeymap-1.12.2-5.5.4.jar
	* JustEnoughItemsAPI (4.13.0) from jei_1.12.2-4.15.0.278.jar
	* MatterOverdrive|API (0.4.1) from MatterOverdrive-1.12.2-0.7.1.0-universal.jar
	* MekanismAPI|core (9.7.2) from Mekanism-1.12.2-9.7.2.373.jar
	* MekanismAPI|energy (9.7.2) from Mekanism-1.12.2-9.7.2.373.jar
	* MekanismAPI|gas (9.7.2) from Mekanism-1.12.2-9.7.2.373.jar
	* MekanismAPI|infuse (9.7.2) from Mekanism-1.12.2-9.7.2.373.jar
	* MekanismAPI|laser (9.7.2) from Mekanism-1.12.2-9.7.2.373.jar
	* MekanismAPI|transmitter (9.7.2) from Mekanism-1.12.2-9.7.2.373.jar
	* MekanismAPI|util (9.0.0) from Mekanism-1.12.2-9.7.2.373.jar
	* Mystcraft|API (0.2) from mystcraft-1.12.2-0.13.7.03.jar
	* opencomputersapi|component (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|core (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|driver (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|driver|item (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|event (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|filesystem (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|internal (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|machine (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|manual (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|network (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* opencomputersapi|prefab (7.0.0-alpha) from OpenComputers-MC1.12.2-1.7.4.153.jar
	* practicallogistics2-api (3.1) from practicallogistics2-1.12.2-3.0.8-11.jar
	* projecteapi (1.12.2-1.1.0) from ProjectE-1.12.2-PE1.4.0.jar
	* redstonefluxapi (2.1.0) from RedstoneFlux-1.12-2.1.0.6-universal.jar
	* sonarapi (1.0.1) from sonarcore-1.12.2-5.0.19-20.jar
	* togetherforeverapi (1) from togetherforever-1.12.2-1.0.12-22.jar
	* valkyrielib.api (1.12.2-2.0.10a) from valkyrielib-1.12.2-2.0.20.1.jar
	* WailaAPI (1.3) from Hwyla-1.8.26-B41_1.12.2.jar
AE2 Integration: IC2:OFF, RC:OFF, MFR:OFF, Waila:ON, Mekanism:ON, OpenComputers:ON, THE_ONE_PROBE:OFF, TESLA:OFF, CRAFTTWEAKER:ON
Profiler Position: N/A (disabled)
Player Count: 0 / 60; []
Is Modded: Definitely; Server brand changed to 'fml,forge'
Type: Dedicated Server (map_server.txt)

game cash after i died at player trap

crash-2019-03-31_15.01.02-server.txt

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

---- Minecraft Crash Report ----
// I bet Cylons wouldn't have this problem.

Time: 2019-03-31 15:01:02 ICT
Description: Ticking block entity

java.lang.ClassCastException: net.minecraft.nbt.NBTTagString cannot be cast to net.minecraft.nbt.NBTTagCompound
at com.therandomlabs.randompatches.patch.NBTTagCompoundPatch.areTagMapsEqual(NBTTagCompoundPatch.java:102)
at net.minecraft.nbt.NBTTagCompound.equals(NBTTagCompound.java:459)
at net.minecraftforge.items.ItemHandlerHelper.canItemStacksStackRelaxed(ItemHandlerHelper.java:84)
at net.minecraftforge.items.ItemHandlerHelper.insertItemStacked(ItemHandlerHelper.java:120)
at lumien.randomthings.tileentity.TileEntityItemCollector.update(TileEntityItemCollector.java:49)
at net.minecraft.world.World.redirect$tileEntityUpdate$zbm000(World.java:5131)
at net.minecraft.world.World.updateEntities(World.java:1835)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:613)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:767)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:668)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:185)
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:

-- Block entity being ticked --
Name: randomthings:itemcollector // lumien.randomthings.tileentity.TileEntityItemCollector
Block type: ID #831 (tile.itemCollector // lumien.randomthings.block.BlockItemCollector // randomthings:itemcollector)
Block data value: 2 / 0x2 / 0b0010
Block location: World: (-11,90,10), Chunk: (at 5,5,10 in -1,0; contains blocks -16,0,0 to -1,255,15), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Actual block type: ID #831 (tile.itemCollector // lumien.randomthings.block.BlockItemCollector // randomthings:itemcollector)
Actual block data value: 2 / 0x2 / 0b0010
Block Entity NBT: {x:-11,y:90,z:10,id:"randomthings:itemcollector"}

-- Affected level --
Level name: real world
All players: 1 total; [EntityPlayerMP['Listen_ME'/55434, l='real world', x=0.50, y=90.02, z=0.50]]
Chunk stats: ServerChunkCache: 798 Drop: 0
Level seed: 5184205451266113285
Level generator: ID 07 - voidworld, ver 0. Features enabled: true
Level generator options:
Level spawn location: World: (0,90,0), Chunk: (at 0,5,0 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 1126952 game time, 1126952 day time
Level dimension: 0
Level storage version: 0x04ABD - Anvil
Level weather: Rain time: 10007 (now: true), thunder time: 73613 (now: false)
Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false

-- System Details --
Minecraft Version: 1.12.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 3649065160 bytes (3480 MB) / 8215068672 bytes (7834 MB) up to 11453595648 bytes (10923 MB)
JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx12g -Xms256m -XX:PermSize=256m
IntCache: cache: 0, tcache: 0, allocated: 15, tallocated: 95
FML: MCP 9.42 Powered by Forge 14.23.5.2808 261 mods loaded, 261 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.2808.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |
   | LCHIJA | forge                             | 14.23.5.2808             | forge-1.12.2-14.23.5.2808.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |
   | LCHIJA | smoothfontcore                    | mc1.12.2-1.16            | minecraft.jar                                      | None                                     |
   | LCHIJA | openmodscore                      | 0.12.1                   | minecraft.jar                                      | None                                     |
   | LCHIJA | foamfixcore                       | 7.7.4                    | minecraft.jar                                      | None                                     |
   | LCHIJA | randompatches                     | 1.12.2-1.15.0.1          | randompatches-1.12.2-1.15.0.1.jar                  | None                                     |
   | LCHIJA | smoothfont                        | mc1.12.2-1.16.2          | SmoothFont-mc1.12.2-1.16.2.jar                     | None                                     |
   | LCHIJA | fastbench                         | 1.6.1                    | FastWorkbench-1.12.2-1.6.1.jar                     | None                                     |
   | LCHIJA | actuallyadditions                 | 1.12.2-r146              | ActuallyAdditions-1.12.2-r146.jar                  | None                                     |
   | LCHIJA | baubles                           | 1.5.2                    | Baubles-1.12-1.5.2.jar                             | None                                     |
   | LCHIJA | actuallybaubles                   | 1.1                      | ActuallyBaubles-1.12-1.1.jar                       | None                                     |
   | LCHIJA | ctm                               | MC1.12.2-0.3.3.22        | CTM-MC1.12.2-0.3.3.22.jar                          | None                                     |
   | LCHIJA | appliedenergistics2               | rv6-stable-6             | appliedenergistics2-rv6-stable-6.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 | endercore                         | 1.12.2-0.5.45            | EnderCore-1.12.2-0.5.45.jar                        | None                                     |
   | LCHIJA | crafttweaker                      | 4.1.15                   | CraftTweaker2-1.12-4.1.15.jar                      | None                                     |
   | LCHIJA | mtlib                             | 3.0.6                    | MTLib-3.0.6.jar                                    | None                                     |
   | LCHIJA | modtweaker                        | 4.0.16                   | modtweaker-4.0.16.jar                              | None                                     |
   | LCHIJA | jei                               | 4.15.0.268               | jei_1.12.2-4.15.0.268.jar                          | None                                     |
   | LCHIJA | thaumcraft                        | 6.1.BETA26               | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |
   | LCHIJA | codechickenlib                    | 3.2.2.353                | CodeChickenLib-1.12.2-3.2.2.353-universal.jar      | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
   | LCHIJA | redstoneflux                      | 2.1.0                    | RedstoneFlux-1.12-2.1.0.6-universal.jar            | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | cofhcore                          | 4.6.2                    | CoFHCore-1.12.2-4.6.2.25-universal.jar             | None                                     |
   | LCHIJA | brandonscore                      | 2.4.9                    | BrandonsCore-1.12.2-2.4.9.195-universal.jar        | None                                     |
   | LCHIJA | cofhworld                         | 1.3.0                    | CoFHWorld-1.12.2-1.3.0.6-universal.jar             | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | thermalfoundation                 | 2.6.2                    | ThermalFoundation-1.12.2-2.6.2.26-universal.jar    | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | draconicevolution                 | 2.3.20                   | Draconic-Evolution-1.12.2-2.3.20.333-universal.jar | None                                     |
   | LCHIJA | thermalexpansion                  | 5.5.3                    | ThermalExpansion-1.12.2-5.5.3.41-universal.jar     | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | enderio                           | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | mantle                            | 1.12-1.3.3.42            | Mantle-1.12-1.3.3.42.jar                           | None                                     |
   | LCHIJA | projecte                          | 1.12-PE1.3.2h            | ProjectE-1.12-PE1.3.2h.jar                         | None                                     |
   | LCHIJA | chisel                            | MC1.12.2-0.2.1.35        | Chisel-MC1.12.2-0.2.1.35.jar                       | None                                     |
   | LCHIJA | enderiointegrationtic             | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | tconstruct                        | 1.12.2-2.12.0.115        | TConstruct-1.12.2-2.12.0.115.jar                   | None                                     |
   | LCHIJA | p455w0rdslib                      | 2.0.36                   | p455w0rdslib-1.12.2-2.0.36.jar                     | None                                     |
   | LCHIJA | ae2wtlib                          | 1.0.6                    | AE2WTLib-1.12.2-1.0.6.jar                          | None                                     |
   | LCHIJA | akashictome                       | 1.2-12                   | AkashicTome-1.2-12.jar                             | None                                     |
   | LCHIJA | extrautils2                       | 1.0                      | extrautils2-1.12-1.9.9.jar                         | None                                     |
   | LCHIJA | flyringbaublemod                  | 0.3.1_1.12-d4e654e       | angelRingToBauble-1.12-0.3.1.50+d4e654e.jar        | None                                     |
   | LCHIJA | appleskin                         | 1.0.9                    | AppleSkin-mc1.12-1.0.9.jar                         | None                                     |
   | LCHIJA | architecturecraft                 | @VERSION@                | architecturecraft-1.12-3.80.jar                    | None                                     |
   | LCHIJA | attributefix                      | 1.0.4                    | AttributeFix-1.12.2-1.0.4.jar                      | d476d1b22b218a10d845928d1665d45fce301b27 |
   | LCHIJA | morphtool                         | 1.2-21                   | Morph-o-Tool-1.2-21.jar                            | None                                     |
   | LCHIJA | autoreglib                        | 1.3-26                   | AutoRegLib-1.3-26.jar                              | None                                     |
   | LCHIJA | avaritia                          | 3.3.0                    | Avaritia-1.12.2-3.3.0.33-universal.jar             | None                                     |
   | LCHIJA | badwithernocookiereloaded         | 1.12.2-3.3.16            | badwithernocookiereloaded-1.12.2-3.3.16.jar        | None                                     |
   | LCHIJA | base                              | 3.12.0                   | base-1.12.2-3.12.0.jar                             | None                                     |
   | LCHIJA | betterbuilderswands               | 0.13.1                   | BetterBuildersWands-1.12.2-0.13.1.269+13450ff.jar  | None                                     |
   | LCHIJA | blockcraftery                     | 1.12.2-1.2.0             | blockcraftery-1.12.2-1.2.0.jar                     | None                                     |
   | LCHIJA | bonsaitrees                       | 1.1.2                    | bonsaitrees-1.1.2-b144.jar                         | None                                     |
   | LCHIJA | bookshelf                         | 2.3.577                  | Bookshelf-1.12.2-2.3.577.jar                       | d476d1b22b218a10d845928d1665d45fce301b27 |
   | LCHIJA | botania                           | r1.10-360                | Botania r1.10-360.jar                              | None                                     |
   | LCHIJA | buildcraftlib                     | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcraftcore                    | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcraftbuilders                | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcrafttransport               | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcraftsilicon                 | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | theoneprobe                       | 1.4.28                   | theoneprobe-1.12-1.4.28.jar                        | None                                     |
   | LCHIJA | buildcraftcompat                  | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcraftenergy                  | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcraftfactory                 | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildcraftrobotics                | 7.99.22                  | buildcraft-all-7.99.22.jar                         | None                                     |
   | LCHIJA | buildinggadgets                   | 2.6.6                    | BuildingGadgets-2.6.6.jar                          | None                                     |
   | LCHIJA | ceramics                          | 1.12-1.3.6               | Ceramics-1.12-1.3.6.jar                            | None                                     |
   | LCHIJA | chameleon                         | 1.12-4.1.3               | Chameleon-1.12-4.1.3.jar                           | None                                     |
   | LCHIJA | chancecubes                       | 1.12.2-3.2.3.242         | ChanceCubes-1.12.2-3.2.3.242.jar                   | None                                     |
   | LCHIJA | chesttransporter                  | 2.8.8                    | ChestTransporter-1.12.2-2.8.8.jar                  | None                                     |
   | LCHIJA | chickens                          | 6.1.0                    | chickens-6.1.0.jar                                 | None                                     |
   | LCHIJA | chiselsandbits                    | 14.30                    | chiselsandbits-14.30.jar                           | None                                     |
   | LCHIJA | clienttweaks                      | 3.1.11                   | ClientTweaks_1.12.2-3.1.11.jar                     | None                                     |
   | LCHIJA | shadowmc                          | 3.8.0                    | ShadowMC-1.12-3.8.0.jar                            | None                                     |
   | LCHIJA | clipboard                         | @VERSION@                | Clipboard-1.12-1.3.0.jar                           | None                                     |
   | LCHIJA | clumps                            | 3.1.2                    | Clumps-3.1.2.jar                                   | None                                     |
   | LCHIJA | cyclopscore                       | 1.0.6                    | CyclopsCore-1.12.2-1.0.6.jar                       | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
   | LCHIJA | commoncapabilities                | 2.1.0                    | CommonCapabilities-1.12.2-2.1.0.jar                | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
   | LCHIJA | compactmachines3                  | 3.0.15                   | compactmachines3-1.12.2-3.0.15-b249.jar            | None                                     |
   | LCHIJA | contenttweaker                    | 1.12.2-4.9.1             | ContentTweaker-1.12.2-4.9.1.jar                    | None                                     |
   | LCHIJA | controlling                       | 3.0.6                    | Controlling-3.0.6.jar                              | None                                     |
   | LCHIJA | cookingforblockheads              | 6.4.69                   | CookingForBlockheads_1.12.2-6.4.69.jar             | None                                     |
   | LCHIJA | craftingtweaks                    | 8.1.9                    | CraftingTweaks_1.12.2-8.1.9.jar                    | None                                     |
   | LCHIJA | craftpresence                     | v1.4.9.9                 | CraftPresence-1.12.2-1.4.9.9.jar                   | eca02c6a597321ad22340897683951ba5c76720a |
   | LCHIJA | ctgui                             | 1.0.0                    | CraftTweaker2-1.12-4.1.15.jar                      | None                                     |
   | LCHIJA | crafttweakerjei                   | 2.0.2                    | CraftTweaker2-1.12-4.1.15.jar                      | None                                     |
   | LCHIJA | cucumber                          | 1.1.3                    | Cucumber-1.12.2-1.1.3.jar                          | None                                     |
   | LCHIJA | custommainmenu                    | 2.0.9                    | CustomMainMenu-MC1.12.2-2.0.9.jar                  | None                                     |
   | LCHIJA | cxlibrary                         | 1.6.1                    | cxlibrary-1.12.1-1.6.1.jar                         | None                                     |
   | LCHIJA | cyclicmagic                       | 1.18.2                   | Cyclic-1.12.2-1.18.2.jar                           | 1bc8f8dbe770187a854cef35dad0ff40ba441bbe |
   | LCHIJA | danknull                          | 1.4.46                   | DankNull-1.12-1.4.46.jar                           | None                                     |
   | LCHIJA | darkutils                         | 1.8.223                  | DarkUtils-1.12.2-1.8.223.jar                       | d476d1b22b218a10d845928d1665d45fce301b27 |
   | LCHIJA | defaultoptions                    | 9.2.8                    | DefaultOptions_1.12.2-9.2.8.jar                    | None                                     |
   | LCHIJA | diethopper                        | 1.1                      | diethopper-1.1.jar                                 | None                                     |
   | LCHIJA | enderiobase                       | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderioconduits                   | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderioconduitsappliedenergistics | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderioconduitsopencomputers      | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderioconduitsrefinedstorage     | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderiointegrationforestry        | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderiointegrationticlate         | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | ftblib                            | 5.4.1.88                 | FTBLib-5.4.1.88.jar                                | None                                     |
   | LCHIJA | enderiomachines                   | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderiopowertools                 | 5.0.40                   | EnderIO-1.12.2-5.0.40.jar                          | None                                     |
   | LCHIJA | enderioendergy                    | 5.0.40                   | EnderIO-endergy-1.12.2-5.0.40.jar                  | None                                     |
   | LCHIJA | enderstorage                      | 2.4.5.135                | EnderStorage-1.12.2-2.4.5.135-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
   | LCHIJA | valkyrielib                       | 1.12.2-2.0.19.1          | valkyrielib-1.12.2-2.0.19.1.jar                    | None                                     |
   | LCHIJA | environmentaltech                 | 1.12.2-2.0.19.1          | environmentaltech-1.12.2-2.0.19.1.jar              | None                                     |
   | LCHIJA | mekanism                          | 1.12.2-9.6.1.353         | Mekanism-1.12.2-9.6.1.353.jar                      | None                                     |
   | LCHIJA | immersiveengineering              | 0.12-89                  | ImmersiveEngineering-0.12-89.jar                   | 4cb49fcde3b43048c9889e0a3d083225da926334 |
   | LCHIJA | exchangers                        | 1.12.2-2.8               | Exchangers-1.12.2-2.8.jar                          | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |
   | LCHIJA | forgelin                          | 1.8.2                    | Forgelin-1.8.2.jar                                 | None                                     |
   | LCHIJA | oreberries                        | 0.5.0                    | oreberries-1.12.x-0.5.0.jar                        | None                                     |
   | LCHIJA | exnihilocreatio                   | 1.12.2-0.3.8.3           | exnihilocreatio-1.12.2-0.3.8.3.jar                 | None                                     |
   | LCHIJA | excompressum                      | 3.0.26                   | ExCompressum_1.12.2-3.0.26.jar                     | None                                     |
   | LCHIJA | hammercore                        | 2.0.4.1                  | HammerCore-1.12.2-2.0.4.1.jar                      | 4d7b29cd19124e986da685107d16ce4b49bc0a97 |
   | LCHIJA | expequiv                          | 11b                      | ExpandedEquivalence-1.12.2-11b.jar                 | 4d7b29cd19124e986da685107d16ce4b49bc0a97 |
   | LCHIJA | extracells                        | 2.6.3                    | ExtraCells-1.12.2-2.6.3aNIGHTLY.jar                | None                                     |
   | LCHIJA | zerocore                          | 1.12-0.1.2.3             | zerocore-1.12-0.1.2.3.jar                          | None                                     |
   | LCHIJA | bigreactors                       | 1.12.2-0.4.5.50          | ExtremeReactors-1.12.2-0.4.5.50.jar                | None                                     |
   | LCHIJA | farmingforblockheads              | 3.1.26                   | FarmingForBlockheads_1.12.2-3.1.26.jar             | None                                     |
   | LCHIJA | fasterladderclimbing              | 0.1-146                  | FasterLadderClimbing-1.12-0.1-146.jar              | None                                     |
   | LCHIJA | fastfurnace                       | 1.2.1                    | FastFurnace-1.12.2-1.2.1.jar                       | None                                     |
   | LCHIJA | fastleafdecay                     | v14                      | FastLeafDecay-v14.jar                              | None                                     |
   | LCHIJA | flatcoloredblocks                 | mc1.12-6.6               | flatcoloredblocks-mc1.12-6.6.jar                   | None                                     |
   | LCHIJA | sonarcore                         | 5.0.19                   | sonarcore-1.12.2-5.0.19-20.jar                     | None                                     |
   | LCHIJA | fluxnetworks                      | 3.0.19                   | fluxnetworks-1.12.2-3.0.19-21.jar                  | None                                     |
   | LCHIJA | foamfix                           | 0.10.3-1.12.2            | foamfix-0.10.3-1.12.2.jar                          | None                                     |
   | LCHIJA | forgemultipartcbe                 | 2.6.1.81                 | ForgeMultipart-1.12.2-2.6.1.81-universal.jar       | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
   | LCHIJA | microblockcbe                     | 2.6.1.81                 | ForgeMultipart-1.12.2-2.6.1.81-universal.jar       | None                                     |
   | LCHIJA | minecraftmultipartcbe             | 2.6.1.81                 | ForgeMultipart-1.12.2-2.6.1.81-universal.jar       | None                                     |
   | LCHIJA | framland                          | 1.12.2-1.0.8             | framland-1.12.2-1.0.8.jar                          | None                                     |
   | LCHIJA | ftbutilities                      | 5.4.0.86                 | FTBUtilities-5.4.0.86.jar                          | None                                     |
   | LCHIJA | itemfilters                       | 1.0.1.8                  | ItemFilters-1.0.1.8.jar                            | None                                     |
   | LCHIJA | ftbquests                         | 1.5.1.135                | FTBQuests-1.5.1.135.jar                            | None                                     |
   | LCHIJA | ftbbackups                        | 0.0.0.ftbbackups         | FTBUtilitiesBackups-1.0.0.2.jar                    | None                                     |
   | LCHIJA | fw                                | 1.6.0                    | FullscreenWindowed-1.12-1.6.0.jar                  | None                                     |
   | LCHIJA | gasconduits                       | 1.12.2-1.0.0             | GasConduits-1.12.2-1.0.0.jar                       | None                                     |
   | LCHIJA | ichunutil                         | 7.2.1                    | iChunUtil-1.12.2-7.2.1.jar                         | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |
   | LCHIJA | googlyeyes                        | 7.1.0                    | GooglyEyes-1.12.2-7.1.0.jar                        | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |
   | LCHIJA | gravestone                        | 1.10.2                   | gravestone-1.10.2.jar                              | None                                     |
   | LCHIJA | hatchery                          | 2.2.1                    | hatchery-1.12.2-2.2.1.jar                          | None                                     |
   | LCHIJA | teslacorelib                      | 1.0.15                   | tesla-core-lib-1.12.2-1.0.15.jar                   | d476d1b22b218a10d845928d1665d45fce301b27 |
   | LCHIJA | industrialforegoing               | 1.12.2-1.12.2            | industrialforegoing-1.12.2-1.12.7-231.jar          | None                                     |
   | LCHIJA | industrialmeat                    | 1.12-1.0.2               | industrialmeat-1.12-1.0.2.jar                      | None                                     |
   | LCHIJA | integrateddynamics                | 1.0.8                    | IntegratedDynamics-1.12.2-1.0.8.jar                | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
   | LCHIJA | integrateddynamicscompat          | 1.0.0                    | IntegratedDynamics-1.12.2-1.0.8.jar                | None                                     |
   | LCHIJA | integratedtunnels                 | 1.6.7                    | IntegratedTunnels-1.12.2-1.6.7.jar                 | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
   | LCHIJA | integratedtunnelscompat           | 1.0.0                    | IntegratedTunnels-1.12.2-1.6.7.jar                 | None                                     |
   | LCHIJA | mysticalagriculture               | 1.7.1                    | MysticalAgriculture-1.12.2-1.7.1.jar               | None                                     |
   | LCHIJA | mysticalagradditions              | 1.2.10                   | MysticalAgradditions-1.12.2-1.2.10.jar             | None                                     |
   | LCHIJA | harvestcraft                      | 1.12.2zb                 | Pam's HarvestCraft 1.12.2zb.jar                    | None                                     |
   | LCHIJA | mcjtylib_ng                       | 3.1.1                    | mcjtylib-1.12-3.1.1.jar                            | None                                     |
   | LCHIJA | rftools                           | 7.61                     | rftools-1.12-7.61.jar                              | None                                     |
   | LCHIJA | integrationforegoing              | 1.12.2-1.9               | IntegrationForegoing-1.12.2-1.9.jar                | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |
   | LCHIJA | inventorytweaks                   | 1.64+dev.146.2180b27     | InventoryTweaks-1.64+dev.146.jar                   | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |
   | LCHIJA | ironbackpacks                     | 1.12.2-3.0.8-12          | IronBackpacks-1.12.2-3.0.8-12.jar                  | None                                     |
   | LCHIJA | ironchest                         | 1.12.2-7.0.59.842        | ironchest-1.12.2-7.0.59.842.jar                    | None                                     |
   | LCHIJA | jehc                              | 1.12.2                   | JEHC-1.12.2-1.6.2.0.jar                            | None                                     |
   | LCHIJA | jee                               | 1.0.6                    | JustEnoughEnergistics-1.12.2-1.0.6.jar             | None                                     |
   | LCHIJA | loottweaker                       | 0.0.8                    | LootTweaker-1.12.2-0.0.8.jar                       | None                                     |
   | LCHIJA | jeresources                       | 0.8.9.48                 | JustEnoughResources-1.12.2-0.8.9.48.jar            | None                                     |
   | LCHIJA | kleeslabs                         | 5.4.11                   | KleeSlabs_1.12.2-5.4.11.jar                        | None                                     |
   | LCHIJA | letsencryptcraft                  | @VERSION@                | letsencryptcraft-1.10.2-1.2.0.jar                  | None                                     |
   | LCHIJA | reborncore                        | 3.13.6.424               | RebornCore-1.12.2-3.13.6.424-universal.jar         | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |
   | LCHIJA | mainmenuscale                     | 1.0                      | MainMenuScale-1.3.2.jar                            | None                                     |
   | LCHIJA | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT    | malisiscore-1.12.2-6.5.1.jar                       | None                                     |
   | LCHIJA | malisisdoors                      | 1.12.2-7.3.0             | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |
   | LCHIJA | mekanismgenerators                | 9.6.1                    | MekanismGenerators-1.12.2-9.6.1.353.jar            | None                                     |
   | LCHIJA | mekanismtools                     | 9.6.1                    | MekanismTools-1.12.2-9.6.1.353.jar                 | None                                     |
   | LCHIJA | mightyenderchicken                | 7.3.0                    | MightyEnderChicken-1.12.2-7.3.0.jar                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |
   | LCHIJA | minetogether                      | unspecified              | minetogether-1.10.2-2.1.3.jar                      | None                                     |
   | LCHIJA | minetogetherserver                | unspecified              | minetogether-1.10.2-2.1.3.jar                      | None                                     |
   | LCHIJA | missing_pieces                    | 4.3.0                    | missing_pieces-1.12.2-4.3.0.jar                    | None                                     |
   | LCHIJA | mob_grinding_utils                | 0.3.13                   | MobGrindingUtils-0.3.13.jar                        | None                                     |
   | LCHIJA | modnametooltip                    | 1.10.0                   | modnametooltip_1.12.2-1.10.0.jar                   | None                                     |
   | LCHIJA | morechickens                      | 3.1.0                    | morechickens-1.12.2-3.1.0.jar                      | None                                     |
   | LCHIJA | morefurnaces                      | 1.10.5                   | MoreFurnaces-1.12.2-1.10.6.jar                     | None                                     |
   | LCHIJA | moreoverlays                      | 1.14                     | moreoverlays-1.14-mc1.12.2.jar                     | None                                     |
   | LCHIJA | morph                             | 7.1.3                    | Morph-1.12.2-7.1.3.jar                             | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |
   | 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 | mputils                           | 1.5.6                    | MPUtils-1.12.2-1.5.7.jar                           | None                                     |
   | LCHIJA | mrtjpcore                         | 2.1.3.35                 | MrTJPCore-1.12.2-2.1.3.35-universal.jar            | None                                     |
   | LCHIJA | neat                              | 1.4-17                   | Neat 1.4-17.jar                                    | None                                     |
   | LCHIJA | nmsot                             | 1.2.2-mc1.12.2           | NoMobSpawningOnTrees-1.2.2-mc1.12.2.jar            | None                                     |
   | LCHIJA | norecipebook                      | 1.2.1                    | noRecipeBook_v1.2.2formc1.12.2.jar                 | None                                     |
   | LCHIJA | notemastahp                       | 1.0.1                    | NoTemaStahp-1.12.2-1.0.1.jar                       | d476d1b22b218a10d845928d1665d45fce301b27 |
   | LCHIJA | notenoughwands                    | 1.7.3                    | notenoughwands-1.12-1.7.3.jar                      | None                                     |
   | LCHIJA | openmods                          | 0.12.1                   | OpenModsLib-1.12.2-0.12.1.jar                      | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |
   | LCHIJA | openblocks                        | 1.8                      | OpenBlocks-1.12.2-1.8.jar                          | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |
   | LCHIJA | oreexcavation                     | 1.4.137                  | OreExcavation-1.4.137.jar                          | None                                     |
   | LCHIJA | packcrashinfo                     | %VERSION%                | packcrashinfo-1.0.1.jar                            | None                                     |
   | LCHIJA | petrock                           | 0.3.1                    | petrock-0.3.1.jar                                  | ac38a3286ab9f4777b0023f0f6280caa9369d575 |
   | LCHIJA | placebo                           | 1.5.1                    | Placebo-1.12.2-1.5.1.jar                           | None                                     |
   | LCHIJA | psi                               | r1.1-72                  | Psi-r1.1-72.jar                                    | None                                     |
   | LCHIJA | plustic                           | 7.0.0.0                  | plustic-7.0.0.0.jar                                | None                                     |
   | LCHIJA | projectex                         | 1.0.0.10                 | ProjectEX-1.0.0.10.jar                             | None                                     |
   | LCHIJA | projectintelligence               | 1.0.2                    | ProjectIntelligence-1.12.2-1.0.2.16-universal.jar  | None                                     |
   | LCHIJA | projectred-core                   | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-Base.jar                | None                                     |
   | LCHIJA | projectred-compat                 | 1.0                      | ProjectRed-1.12.2-4.9.1.92-compat.jar              | None                                     |
   | LCHIJA | projectred-integration            | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-integration.jar         | None                                     |
   | LCHIJA | projectred-transmission           | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-integration.jar         | None                                     |
   | LCHIJA | projectred-fabrication            | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-fabrication.jar         | None                                     |
   | LCHIJA | projectred-illumination           | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-lighting.jar            | None                                     |
   | LCHIJA | projectred-expansion              | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-mechanical.jar          | None                                     |
   | LCHIJA | projectred-relocation             | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-mechanical.jar          | None                                     |
   | LCHIJA | projectred-transportation         | 4.9.1.92                 | ProjectRed-1.12.2-4.9.1.92-mechanical.jar          | None                                     |
   | LCHIJA | quantumflux                       | 2.0.17                   | quantumflux-1.12.2-2.0.17.jar                      | None                                     |
   | LCHIJA | randomthings                      | 4.2.6                    | RandomThings-MC1.12.2-4.2.6.jar                    | d72e0dd57935b3e9476212aea0c0df352dd76291 |
   | LCHIJA | randomtweaks                      | 1.12.2-2.4.3.2           | randomtweaks-1.12.2-2.4.3.2.jar                    | 20d08fb3fe9c268a63a75d337fb507464c8aaccd |
   | LCHIJA | realdrops                         | 1.2.14                   | RealisticItemDrops-1.2.14.jar                      | None                                     |
   | LCHIJA | redstonearsenal                   | 2.6.2                    | RedstoneArsenal-1.12.2-2.6.2.17-universal.jar      | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | resourceloader                    | 1.5.3                    | ResourceLoader-MC1.12.1-1.5.3.jar                  | d72e0dd57935b3e9476212aea0c0df352dd76291 |
   | LCHIJA | rflux                             | 0.3.2                    | rflux-1.12-0.3.2.jar                               | None                                     |
   | LCHIJA | rftoolscontrol                    | 1.9.3                    | rftoolsctrl-1.12-1.9.3.jar                         | None                                     |
   | LCHIJA | rftoolspower                      | 1.1.2                    | rftoolspower-1.12-1.1.2.jar                        | None                                     |
   | LCHIJA | roost                             | 1.3.0                    | roost-1.12-1.3.0.jar                               | None                                     |
   | LCHIJA | thermaldynamics                   | 2.5.4                    | ThermalDynamics-1.12.2-2.5.4.18-universal.jar      | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | simplyjetpacks                    | 2.2.10.63                | SimplyJetpacks2-1.12.2-2.2.10.63.jar               | None                                     |
   | LCHIJA | simplylight                       | 0.6.0                    | simplylight-0.6.0.jar                              | None                                     |
   | LCHIJA | snad                              | 1.12.1-1.7.09.16a        | Snad-1.12.1-1.7.09.16a.jar                         | None                                     |
   | LCHIJA | stoneblockdimensions              | 1.0.3                    | StoneBlockDimensions-1.0.3.jar                     | None                                     |
   | LCHIJA | stoneblockutilities               | 2.1.4                    | StoneBlockUtilities-2.1.4.jar                      | None                                     |
   | LCHIJA | stonechest                        | 1.0.4                    | StoneChest-1.0.4.jar                               | None                                     |
   | LCHIJA | storagedrawers                    | 1.12-5.3.5               | StorageDrawers-1.12.2-5.3.8.jar                    | None                                     |
   | LCHIJA | tcinventoryscan                   | 2.0.10                   | ThaumicInventoryScanning_1.12.2-2.0.10.jar         | None                                     |
   | LCHIJA | thaumicjei                        | 1.2.1                    | ThaumicJEI-1.12.2-1.5.5-23.jar                     | None                                     |
   | LCHIJA | thaumicterminal                   | 1.0.10                   | ThaumicTerminal-1.0.10.jar                         | None                                     |
   | LCHIJA | thermalcultivation                | 0.3.2                    | ThermalCultivation-1.12.2-0.3.2.11-universal.jar   | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | thermalinnovation                 | 0.3.2                    | ThermalInnovation-1.12.2-0.3.2.11-universal.jar    | 8a6abf2cb9e141b866580d369ba6548732eff25f |
   | LCHIJA | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |
   | LCHIJA | tp                                | 3.2.32                   | tinyprogressions-1.12.2-3.3.32-Release.jar         | None                                     |
   | LCHIJA | tipthescales                      | 1.0.3                    | TipTheScales-1.12.2-1.0.3.jar                      | None                                     |
   | LCHIJA | tmel                              | 1.12.2-1.3.2.2           | tmel-1.12.2-1.3.2.2.jar                            | None                                     |
   | LCHIJA | toastcontrol                      | 1.8.0                    | Toast Control-1.12.2-1.8.0.jar                     | None                                     |
   | LCHIJA | topaddons                         | 1.12.2-1.10.1            | topaddons-1.12.2-1.10.1.jar                        | None                                     |
   | LCHIJA | torchmaster                       | 1.7.1.74                 | torchmaster_1.12.2-1.7.1.74.jar                    | 5e9a436b366831c8f54a7e80b015784da69278c6 |
   | LCHIJA | tramplestopper                    | 1.2.3                    | tramplestopper-1.12.2-1.2.3-universal.jar          | None                                     |
   | LCHIJA | translocators                     | 2.5.1.77                 | Translocators-1.12.2-2.5.1.77-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
   | LCHIJA | ts2k16                            | 1.2.10                   | TS2K16-1.2.10.jar                                  | None                                     |
   | LCHIJA | uppers                            | 0.0.6                    | Uppers-0.0.6.jar                                   | None                                     |
   | LCHIJA | universalmodifiers                | 1.12.2-1.0.16.1          | valkyrielib-1.12.2-2.0.19.1.jar                    | None                                     |
   | LCHIJA | vanillafix                        | 1.0.10-SNAPSHOT          | VanillaFix-1.0.10-99.jar                           | None                                     |
   | LCHIJA | veinminer                         | 0.38.1                   | Vein-Miner-Mod-1.12.jar                            | None                                     |
   | LCHIJA | veinminermodsupport               | 0.38.1                   | Vein-Miner-Mod-1.12.jar                            | None                                     |
   | LCHIJA | voidislandcontrol                 | 1.5.3                    | voidislandcontrol-1.5.3.jar                        | None                                     |
   | LCHIJA | wanionlib                         | 1.12.2-2.2               | WanionLib-1.12.2-2.2.jar                           | None                                     |
   | LCHIJA | wct                               | 3.11.88                  | WirelessCraftingTerminal-1.12.2-3.11.88.jar        | None                                     |
   | LCHIJA | wrcbe                             | 2.3.1                    | WR-CBE-1.12.2-2.3.1.30-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
   | LCHIJA | xaerominimap                      | 1.16                     | Xaeros_Minimap_1.16_Forge_1.12.jar                 | None                                     |
   | LCHIJA | xnet                              | 1.7.6                    | xnet-1.12-1.7.6.jar                                | None                                     |
   | LCHIJA | xtones                            | 1.12-1.0.8-11            | Xtones-1.12-1.0.8-11.jar                           | None                                     |
   | LCHIJA | yabba                             | 1.1.2.45                 | YABBA-1.1.2.45.jar                                 | None                                     |
   | LCHIJA | ynot                              | 0.2.3                    | YNot-0.2.3.jar                                     | None                                     |
   | LCHIJA | llibrary                          | 1.7.17                   | llibrary-1.7.17-1.12.2.jar                         | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |
   | LCHIJA | reauth                            | 3.6.0                    | reauth-3.6.0.jar                                   | daba0ec4df71b6da841768c49fb873def208a1e3 |
   | LCHIJA | fluidcows                         | 1.1.17                   | FluidCows-1.1.17.jar                               | None                                     |
   | LCHIJA | mysticallib                       | 1.12.2-1.1.1             | mysticallib-1.12.2-1.1.1.jar                       | None                                     |
   | LCHIJA | teslacorelib_registries           | 1.0.15                   | tesla-core-lib-1.12.2-1.0.15.jar                   | None                                     |
   | LCHIJA | unidict                           | 1.12.2-2.9.2             | UniDict-1.12.2-2.9.2.jar                           | None                                     |

Loaded coremods (and transformers): SplashAnimationCoremod (SplashAnimation-0.2.1.jar)
pl.asie.splashanimation.core.SplashProgressTransformer
BedPatch (bedpatch-2.2-1.12.2.jar)
com.mordenkainen.bedpatch.BedPatchASM
Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.146.jar)
invtweaks.forge.asm.ContainerTransformer
CXLibraryCore (cxlibrary-1.12.1-1.6.1.jar)
cubex2.cxlibrary.CoreModTransformer
ForgelinPlugin (Forgelin-1.8.2.jar)

                                  CTMCorePlugin (CTM-MC1.12.2-0.3.3.22.jar)
                                    team.chisel.ctm.client.asm.CTMTransformer
                                  HCASM (HammerCore-1.12.2-2.0.4.1.jar)
                                    com.zeitheron.hammercore.asm.HammerCoreTransformer
                                  LoadingPlugin (RandomThings-MC1.12.2-4.2.6.jar)
                                    lumien.randomthings.asm.ClassTransformer
                                  IELoadingPlugin (ImmersiveEngineering-core-0.12-89.jar)
                                    blusunrize.immersiveengineering.common.asm.IEClassTransformer
                                  llibrary (llibrary-core-1.0.10-1.12.2.jar)
                                    net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer
                                    net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher
                                  CorePlugin (SmoothFont-mc1.12.2-1.16.2.jar)
                                    bre.smoothfont.asm.Transformer
                                  VanillaFixLoadingPlugin (VanillaFix-1.0.10-99.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.3-1.12.2.jar)
                                    pl.asie.foamfix.coremod.FoamFixTransformer
                                  LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)
                                    lumien.resourceloader.asm.ClassTransformer
                                  MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)
                                    
                                  EnderCorePlugin (EnderCore-1.12.2-0.5.45.jar)
                                    com.enderio.core.common.transform.EnderCoreTransformer
                                    com.enderio.core.common.transform.SimpleMixinPatcher
                                  EECore (ExpandedEquivalence-1.12.2-11b.jar)
                                    com.zeitheron.expequiv.core.EETransformer
                                  OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.1.jar)
                                    openmods.core.OpenModsClassTransformer
                                  RandomPatches (randompatches-1.12.2-1.15.0.1.jar)
                                    com.therandomlabs.randompatches.core.RPTransformer

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]
AE2 Version: stable rv6-stable-6 for Forge 14.23.5.2768
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)
- chiselsandbitsIntegration (Enabled/Not Forced)
- craftingtweaksIntegration (Enabled/Not Forced)
- theoneprobeIntegration (Enabled/Not Forced)
Hammer Core Information: FluidDictionary Info: Registered 2 fluids.
OreDictionary Info: Registered 3320 names; 6849 stacks.
Configuration Info: IyBDb25maWd1cmF0aW9uIGZpbGUKCmNsaWVudCB7CiAgICAjIFNob3VsZCBIYW1tZXIgQ29yZSByZXBsYWNlIGVuY2hhbnRtZW50IGdsaW50IGNvbG9yIHdpdGggbW9yZSBtYXRjaGluZyBjb2xvcnMgZm9yIHNvbWUgdmFuaWxsYSBpdGVtcz8gW2RlZmF1bHQ6IHRydWVdCiAgICBCOiJDdXN0b20gRW5jaGFudG1lbnQgQ29sb3JzIGZvciBWYW5pbGxhIEl0ZW1zIj10cnVlCgogICAgIyBTaG91bGQgSGFtbWVyIENvcmUgcG9ydGZvcndhcmQgeW91ciBsb2NhbCB3b3JsZCB3aGVuIHlvdSBzaGFyZSB3aXRoIGl0IHRvIExBTj8KICAgICMgVGhpcyBmZWF0dXJlIGRvZXNuJ3Qgd29yayBvbiBhbGwgY2xpZW50cywgeW91IGFyZSBnb2luZyB0byBnZXQgYSBtZXNzYWdlIGluIGNoYXQgaWYgaXQgd2FzIHN1Y2Nlc3NmdWwvdW5zdWNjZXNzZnVsIFtkZWZhdWx0OiB0cnVlXQogICAgQjoiTEFOIFVQblAiPXRydWUKCiAgICAjIFJlcGxhY2UgdmFuaWxsYSBmdXJuYWNlIGFuZCBicmV3aW5nIHN0YW5kIHByb2dyZXNzIGJhcnMgdG8gdXNlIHNtb290aCByZW5kZXJpbmc/IFtkZWZhdWx0OiB0cnVlXQogICAgQjoiU21vb3RoIFZhbmlsbGEgR3VpcyI9ZmFsc2UKfQoKCml3cmVuY2ggewogICAgIyBXaGF0IGlzIHRoZSBjb2xvciB3aGVuIHRoZSBob3ZlcmVkIGJsb2NrIGlzIHdyZW5jaGFibGU/IChjb2xvciBlbmNvZGVkIGluIGhleCBmb3JtIHN1Y2ggYXMgUlJHR0JCKQogICAgUzpHcmVlbj0yMkZGMjIKCiAgICAjIFdoYXQgaXMgdGhlIGNvbG9yIHdoZW4gdGhlIGhvdmVyZWQgYmxvY2sgaXMgTk9UIHdyZW5jaGFibGU/IChjb2xvciBlbmNvZGVkIGluIGhleCBmb3JtIHN1Y2ggYXMgUlJHR0JCKQogICAgUzpSZWQ9RkYyMjIyCn0KCgoidmFuaWxsYSBpbXByb3ZlbWVudHMiIHsKICAgICMgU2hvdWxkIEhhbW1lciBDb3JlIGZvcmNlLXNwYXduIEVuZGVyIERyYWdvbiBFZ2cgb24gRW5kZXIgRHJhZ29uIGRlYXRoPyBbZGVmYXVsdDogdHJ1ZV0KICAgIEI6IkFsd2F5cyBTcGF3biBEcmFnb24gRWdnIj10cnVlCn0K
Pastebin Connection: Okay.
Dependent Mods:
-Expanded Equivalence (expequiv) @11b
Modpack Information: Modpack: [FTB Presents Stoneblock 2] Version: [1.9.0] by author [The FTB Team]
List of loaded APIs: * actuallyadditionsapi (34) from ActuallyAdditions-1.12.2-r146.jar
* ae2wtlib|api (1.1) from AE2WTLib-1.12.2-1.0.6.jar
* appliedenergistics2|API (rv6) from appliedenergistics2-rv6-stable-6.jar
* Base|API (1.0.0) from base-1.12.2-3.12.0.jar
* Baubles|API (1.4.0.2) from AE2WTLib-1.12.2-1.0.6.jar
* BetterWithModsAPI (Beta 0.6) from AppleSkin-mc1.12-1.0.9.jar
* bigreactors|API (4.0.1) from ExtremeReactors-1.12.2-0.4.5.50.jar
* BotaniaAPI (92) from Botania r1.10-360.jar
* buildcraftapi_blocks (1.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_boards (2.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_core (2.2) from buildcraft-all-7.99.22.jar
* buildcraftapi_crops (1.1) from buildcraft-all-7.99.22.jar
* buildcraftapi_enums (1.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_events (2.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_facades (1.1) from buildcraft-all-7.99.22.jar
* buildcraftapi_filler (5.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_fuels (2.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_gates (4.1) from buildcraft-all-7.99.22.jar
* buildcraftapi_items (1.1) from buildcraft-all-7.99.22.jar
* buildcraftapi_library (2.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_lists (1.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_power (1.3) from buildcraft-all-7.99.22.jar
* buildcraftapi_recipes (3.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_robotics (3.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_statements (1.1) from buildcraft-all-7.99.22.jar
* buildcraftapi_tiles (1.2) from buildcraft-all-7.99.22.jar
* buildcraftapi_tools (1.0) from buildcraft-all-7.99.22.jar
* buildcraftapi_transport (5.0) from buildcraft-all-7.99.22.jar
* chesttransporter|api (2) from ChestTransporter-1.12.2-2.8.8.jar
* Chisel-API (0.0.1) from Chisel-MC1.12.2-0.2.1.35.jar
* ChiselAPI|Carving (0.0.1) from Chisel-MC1.12.2-0.2.1.35.jar
* ChiselsAndBitsAPI (14.25.0) from chiselsandbits-14.30.jar
* cofhapi (2.5.0) from CoFHCore-1.12.2-4.6.2.25-universal.jar
* commoncapabilities|api (0.0.1) from CommonCapabilities-1.12.2-2.1.0.jar
* CraftingTweaks|API (4.1) from CraftingTweaks_1.12.2-8.1.9.jar
* ctm-api (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
* ctm-api-events (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
* ctm-api-models (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
* ctm-api-textures (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
* ctm-api-utils (0.1.0) from CTM-MC1.12.2-0.3.3.22.jar
* DraconicEvolution|API (1.3) from Draconic-Evolution-1.12.2-2.3.20.333-universal.jar
* enderioapi (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|addon (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|capacitor (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|conduits (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|farm (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|redstone (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|teleport (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|tools (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* enderioapi|upgrades (4.0.0) from EnderIO-1.12.2-5.0.40.jar
* ExCompressum|API (1.0) from ExCompressum_1.12.2-3.0.26.jar
* farmingforblockheads|api (1.0) from FarmingForBlockheads_1.12.2-3.1.26.jar
* fluxapi (1.0) from fluxnetworks-1.12.2-3.0.19-21.jar
* HatcheryAPI (1.11.2R1.0.0) from hatchery-1.12.2-2.2.1.jar
* iChunUtil API (1.2.0) from iChunUtil-1.12.2-7.2.1.jar
* ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.12-89.jar
* ImmersiveEngineering|ImmersiveFluxAPI (1.0) from ImmersiveEngineering-0.12-89.jar
* industrialforegoingapi (5) from industrialforegoing-1.12.2-1.12.7-231.jar
* integrateddynamics|api (0.2.0) from IntegratedDynamics-1.12.2-1.0.8.jar
* jeresources|API (0.8.9.48) from JustEnoughResources-1.12.2-0.8.9.48.jar
* JustEnoughItemsAPI (4.13.0) from jei_1.12.2-4.15.0.268.jar
* MekanismAPI|core (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* MekanismAPI|energy (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* MekanismAPI|gas (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* MekanismAPI|infuse (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* MekanismAPI|laser (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* MekanismAPI|transmitter (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* MekanismAPI|util (9.0.0) from Mekanism-1.12.2-9.6.1.353.jar
* modtogether|api (1.0) from minetogether-1.10.2-2.1.3.jar
* MouseTweaks|API (1.0) from MouseTweaks-2.10-mc1.12.2.jar
* openblocks|api (1.2) from OpenBlocks-1.12.2-1.8.jar
* projecteapi (1.12.2-1.1.0) from ProjectE-1.12-PE1.3.2h.jar
* ProjectEAPI (1.9.4-1.0.0) from p455w0rdslib-1.12.2-2.0.36.jar
* projectred|api (2.0) from ProjectRed-1.12.2-4.9.1.92-Base.jar
* PsiAPI (11) from Psi-r1.1-72.jar
* reborncoreAPI (3.13.6.424) from RebornCore-1.12.2-3.13.6.424-universal.jar
* reborncoreAPI|Power (3.13.6.424) from RebornCore-1.12.2-3.13.6.424-universal.jar
* reborncoreAPI|Recipe (3.13.6.424) from RebornCore-1.12.2-3.13.6.424-universal.jar
* reborncoreAPI|Tile (3.13.6.424) from RebornCore-1.12.2-3.13.6.424-universal.jar
* redstonefluxapi (2.1.0) from RedstoneFlux-1.12-2.1.0.6-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.3.8.jar
* StorageDrawersAPI|event (2.1.0) from StorageDrawers-1.12.2-5.3.8.jar
* StorageDrawersAPI|registry (2.1.0) from StorageDrawers-1.12.2-5.3.8.jar
* StorageDrawersAPI|render (2.1.0) from StorageDrawers-1.12.2-5.3.8.jar
* StorageDrawersAPI|storage (2.1.0) from StorageDrawers-1.12.2-5.3.8.jar
* StorageDrawersAPI|storage-attribute (2.1.0) from StorageDrawers-1.12.2-5.3.8.jar
* Thaumcraft|API (6.0.2) from Thaumcraft-1.12.2-6.1.BETA26.jar
* theoneprobe_api (1.4.4) from theoneprobe-1.12-1.4.28.jar
* valkyrielib.api (1.12.2-2.0.10a) from valkyrielib-1.12.2-2.0.19.1.jar
* veinminerApi (0.3) from Vein-Miner-Mod-1.12.jar
* wct|api (1.1) from WirelessCraftingTerminal-1.12.2-3.11.88.jar
* zerocore|API|multiblock (1.10.2-0.0.2) from zerocore-1.12-0.1.2.3.jar
* zerocore|API|multiblock|rectangular (1.10.2-0.0.2) from zerocore-1.12-0.1.2.3.jar
* zerocore|API|multiblock|tier (1.10.2-0.0.2) from zerocore-1.12-0.1.2.3.jar
* zerocore|API|multiblock|validation (1.10.2-0.0.2) from zerocore-1.12-0.1.2.3.jar
RebornCore: Plugin Engine: 0
RebornCore Version: 3.13.6.424
Runtime Debofucsation 1
RenderEngine: 0
Ender IO: No known problems detected.

        !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        !!!You are looking at the diagnostics information, not at the crash.       !!!
        !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!
        !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

AE2 Integration: IC2:OFF, RC:OFF, MFR:OFF, Waila:OFF, InvTweaks:ON, JEI:ON, Mekanism:ON, OpenComputers:OFF, THE_ONE_PROBE:ON, TESLA:OFF, CRAFTTWEAKER:ON
Suspected Mods: RandomPatches (randompatches), Random Things (randomthings)
Profiler Position: N/A (disabled)
Player Count: 1 / 8; [EntityPlayerMP['Listen_ME'/55434, l='real world', x=0.50, y=90.02, z=0.50]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

Mod is preventing my son from joining a LAN game?

[16:48:57] [Server thread/ERROR] [FML]: Exception caught during firing event net.minecraftforge.fml.common.gameevent.TickEvent$PlayerTickEvent@41793a11:
java.lang.NullPointerException: null
at net.minecraft.world.Teleporter.func_180620_b(Teleporter.java:134) ~[anc.class:?]
at com.therandomlabs.randompatches.common.RPTeleporter.func_180620_b(RPTeleporter.java:46) ~[randompatches-1.12.2-1.15.0.2.jar:?]
at net.minecraft.world.Teleporter.func_180266_a(Teleporter.java:34) ~[anc.class:?]
at com.therandomlabs.randompatches.common.RPTeleporter.func_180266_a(RPTeleporter.java:37) ~[randompatches-1.12.2-1.15.0.2.jar:?]
at net.minecraft.world.Teleporter.placeEntity(Teleporter.java:436) ~[anc.class:?]
at com.therandomlabs.randompatches.common.RPTeleporter.placeEntity(RPTeleporter.java:73) ~[randompatches-1.12.2-1.15.0.2.jar:?]
at net.minecraft.server.management.PlayerList.transferEntityToWorld(PlayerList.java:721) ~[pl.class:?]
at net.minecraft.server.management.PlayerList.transferPlayerToDimension(PlayerList.java:624) ~[pl.class:?]
at net.minecraft.entity.player.EntityPlayerMP.changeDimension(EntityPlayerMP.java:695) ~[oq.class:?]
at net.minecraft.entity.Entity.func_184204_a(Entity.java:2543) ~[vg.class:?]
at the_fireplace.unforgivingvoid.UnforgivingVoid.onPlayerTick(UnforgivingVoid.java:114) ~[UnforgivingVoid.class:?]
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_1103_UnforgivingVoid_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?]
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) ~[ASMEventHandler.class:?]
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182) [EventBus.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:365) [FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.func_70071_h_(EntityPlayer.java:190) [aed.class:?]
at net.minecraft.entity.player.EntityPlayerMP.func_71127_g(EntityPlayerMP.java:382) [oq.class:?]
at net.minecraft.network.NetHandlerPlayServer.func_73660_a(NetHandlerPlayServer.java:173) [pa.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:209) [NetworkDispatcher$1.class:?]
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:285) [gw.class:?]
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:180) [oz.class:?]
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:790) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:185) [chd.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_191]

Crash on loading if forced world generation is enabled and conflicting with another world gen mod doing the same.

Long story short, if there's another mod that also has a forced world gen setting enabled, the game will crash on loading. The only suggestion I have to avoid this issue is a warning, upon load, if RandomPatches can detect another mod is trying to force world gen as well.

I encountered this with Hexlands and am glad I had thought that this was the issue.

Great mod. Thank you or all of your hard work and effort, it's well appreciated.

Ticking player server and client crash

Crash log: https://pastebin.com/raw/SyTByGii
RandomPatches version: 1.15.0.0
Modpack: Enigmatica 2, version 1.62, for Minecraft 1.12.2

My local server that I play on with a friend crashed, and my friend’s client also crashed. They seemed to be similar crash logs. My client did not crash, however.

When this crash happened, my friend was placing a player head of him on the wall. Every time he tries to join the server now, he gets the very same crash, although I can still join the server. We had to restore to a backup of the world. It seems as though placing a vanilla head of his skin might have corrupted the world.

AE2 not worked

After the last update, crash from refined storage. I have ceases to work ae2 me system after a certain time.

[1.12.2] Potion particles fix overrides a Dynamic Surroundings setting

Hello!

I'm using RandomPatches alongside Dynamic Surroundings, and I've noticed that enabling the Particles fixes overrides Dynamic Surroundings' "Suppress Potion Particles" setting (under "Player Options"), causing potion particles to show on the player.

Ideally, the player's potion effects should still be suppressed when using both mods in this configuration.

Versions used:

  • Minecraft 1.12.2
  • Minecraft Forge v14.23.5.2836
  • RandomPatches v1.17.2.1
  • DynamicSurroundings v3.5.4.3

[Question] This mod vs. JVM start args

I was wondering if there is any notable difference from what this mod does versus starting the server and client with the system args passed to set timeout values?

Forge's Network Handler can have custom timeouts, simply adding -Dfml.readTimeout=90 to JVM launch args will define a 90-second read timeout over the default 30. The one "downside" to this however is that both server and clients must add the JVM arg or else whichever is the smaller value will end up "timing-out first." (Even if server is set to 90, if the client is not, then the client will time itsself out at 30 -- the inverse also being true if only applied to the client and not the server. Anecdotally, I believe your mod would need to be on both server and client to have full effect for this same reason).

I would agree that having a mod to download or even include by default in a modpack is easier to "distribute" than teaching unknowing people about JVM args and how to go about modifying them, multiplied by however many players a server might have. For that reason I feel like this mod has worth over the JVM arg method, but my question (sorry for the long-windedness) is how much of this mod's code/methods-of-action (eg asm) are actually necessary and can it be optimized by instead just setting a system property called "readTimeout" and "loginTimeout" early in launch with configured values that Forge will just pick up as the new value?

I'm not a developer so my understanding of the forge timeout stuff is strictly anecdotal, not technical. Also, I have no idea of the steps necessary to modify these timeouts from a mod/code standpoint and perhaps your code is as simplified as it can be, I just wanted to take the time to 1) ask if there's any benefit of this over JVM args and 2) ask/suggest if there's other ways in code to approach the same concept (i.e. possibly avoiding asm/coremod/whatever).

Major server crash using new version

---- Minecraft Crash Report ----
// There are four lights!

Time: 2019-01-14 16:09:18 CST
Description: Exception in server tick loop

java.lang.IllegalArgumentException: Multiple entries with same key: randompatches=Wrapped{randompatches} and randompatches=Wrapped{randompatches}. To index multiple values under a key, use Multimaps.index.
at com.google.common.collect.Maps.uniqueIndex(Maps.java:1385)
at com.google.common.collect.Maps.uniqueIndex(Maps.java:1341)
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427)
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:566)
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:125)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
at java.lang.Thread.run(Unknown Source)

A detailed walkthrough of the error, its code path and all known details is as follows:

-- System Details --
Minecraft Version: 1.12.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_191, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 3319787944 bytes (3165 MB) / 6442450944 bytes (6144 MB) up to 6442450944 bytes (6144 MB)
JVM Flags: 9 total; -XX:+UseG1GC -XX:MaxGCPauseMillis=500 -XX:ParallelGCThreads=8 -XX:+UseStringDeduplication -XX:+UseAES -XX:+UseAESIntrinsics -Xmx6G -Xms6G -XX:UseSSE=4
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.42 Powered by Forge 14.23.5.2796 284 mods loaded, 0 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                                |
   |:----- |:--------------------------------- |:------------------------- |:-------------------------------------------------- |:---------------------------------------- |
   |       | minecraft                         | 1.12.2                    | minecraft.jar                                      | None                                     |
   |       | mcp                               | 9.42                      | minecraft.jar                                      | None                                     |
   |       | FML                               | 8.0.99.99                 | forge-1.12.2-14.23.5.2796-universal.jar            | e3c3d50c7c986df74c645c0ac54639741c90a557 |
   |       | forge                             | 14.23.5.2796              | forge-1.12.2-14.23.5.2796-universal.jar            | e3c3d50c7c986df74c645c0ac54639741c90a557 |
   |       | creativecoredummy                 | 1.0.0                     | minecraft.jar                                      | None                                     |
   |       | itemphysic                        | 1.4.0                     | minecraft.jar                                      | None                                     |
   |       | micdoodlecore                     |                           | minecraft.jar                                      | None                                     |
   |       | smoothfontcore                    | mc1.12.2-1.16             | minecraft.jar                                      | None                                     |
   |       | lesslag                           | 1.0                       | minecraft.jar                                      | None                                     |
   |       | foamfixcore                       | 7.7.4                     | minecraft.jar                                      | None                                     |
   |       | opencomputers|core                | 1.7.3.146                 | minecraft.jar                                      | None                                     |
   |       | botania_tweaks_core               | -100                      | minecraft.jar                                      | None                                     |
   |       | randompatches                     | 1.12.2-1.12.0.1           | randompatches-1.12.2-1.12.0.1.jar                  | None                                     |
   |       | randompatches                     | 1.12.2-1.12.0.1           | randompatches-1.12.2-1.12.0.1.jar                  | None                                     |
   |       | actuallyadditions                 | 1.12.2-r144               | ActuallyAdditions-1.12.2-r144.jar                  | None                                     |
   |       | additionalcompression             | 3.1                       | Additional-Compression-1.12.2-3.1.jar              | None                                     |
   |       | ae2stuff                          | 0.7.0.4                   | ae2stuff-0.7.0.4-mc1.12.2.jar                      | None                                     |
   |       | ae2wtlib                          | 1.0.6                     | AE2WTLib-1.12.2-1.0.6.jar                          | None                                     |
   |       | agricraft                         | 2.12.0-1.12.0-a6          | AgriCraft-2.12.0-1.12.0-a6.jar                     | None                                     |
   |       | akashictome                       | 1.2-12                    | AkashicTome-1.2-12.jar                             | None                                     |
   |       | alternatingflux                   | 0.12.2-1                  | alternatingflux-0.12.2-1.jar                       | None                                     |
   |       | animus                            | 1                         | Animus-2.0.4.jar                                   | None                                     |
   |       | applecore                         | 3.1.4                     | AppleCore-mc1.12.2-3.1.4.jar                       | None                                     |
   |       | appleskin                         | 1.0.9                     | AppleSkin-mc1.12-1.0.9.jar                         | None                                     |
   |       | appliedenergistics2               | rv6-stable-6              | appliedenergistics2-rv6-stable-6.jar               | None                                     |
   |       | aroma1997core                     | 2.0.0.0.b162              | Aroma1997Core-1.12.2-2.0.0.0.b162.jar              | None                                     |
   |       | aromabackup                       | 3.0.0.0.b116              | AromaBackup-1.12.2-3.0.0.0.b116.jar                | None                                     |
   |       | aromabackuprecovery               | 3.0.0.0.b116              | AromaBackup-1.12.2-3.0.0.0.b116.jar                | None                                     |
   |       | astralsorcery                     | 1.10.10                   | astralsorcery-1.12.2-1.10.10.jar                   | None                                     |
   |       | autoreglib                        | 1.3-24                    | AutoRegLib-1.3-24.jar                              | None                                     |
   |       | baubles                           | 1.5.2                     | Baubles-1.12-1.5.2.jar                             | None                                     |
   |       | bdlib                             | 1.14.3.12                 | bdlib-1.14.3.12-mc1.12.2.jar                       | None                                     |
   |       | betterbuilderswands               | 0.12.1                    | BetterBuildersWands-1.12.2-0.12.1.254+27f21b9.jar  | None                                     |
   |       | betterquesting                    | 3.5.285                   | BetterQuesting-3.5.285.jar                         | None                                     |
   |       | betterrecords                     | 1.12.2-1.6.1              | BetterRecords-1.12.2-1.6.1.jar                     | None                                     |
   |       | bibliocraft                       | 2.4.5                     | BiblioCraft[v2.4.5][MC1.12.2].jar                  | None                                     |
   |       | blockcraftery                     | 1.12.2-1.1.0              | blockcraftery-1.12.2-1.1.0.jar                     | None                                     |
   |       | bloodmagic                        | 1.12.2-2.3.3-101          | BloodMagic-1.12.2-2.3.3-101.jar                    | None                                     |
   |       | bloodtinker                       | 1.0.5                     | bloodtinker-1.0.5.jar                              | None                                     |
   |       | bonsaitrees                       | 1.1.2                     | bonsaitrees-1.1.2-b144.jar                         | None                                     |
   |       | bookshelf                         | 2.3.569                   | Bookshelf-1.12.2-2.3.569.jar                       | None                                     |
   |       | botania                           | r1.10-358                 | Botania r1.10-358.jar                              | None                                     |
   |       | botania_tweaks                    | 1.8.2                     | botaniatweaks-1.8.2.jar                            | None                                     |
   |       | botanicadds                       | 1r                        | BotanicAdditions-1.12.2-1r.jar                     | None                                     |
   |       | brandonscore                      | 2.4.9                     | BrandonsCore-1.12.2-2.4.9.195-universal.jar        | None                                     |
   |       | buildinggadgets                   | 2.5.0                     | BuildingGadgets-2.5.0.jar                          | None                                     |
   |       | capabilityproxy                   | 2.1.2                     | CapabilityProxy-1.12.2-2.1.2.jar                   | None                                     |
   |       | carryon                           | 1.12.1                    | CarryOn MC1.12.2 v1.12.1.jar                       | None                                     |
   |       | chameleon                         | 1.12-4.1.3                | Chameleon-1.12-4.1.3.jar                           | None                                     |
   |       | chancecubes                       | 1.12.2-3.2.3.242          | ChanceCubes-1.12.2-3.2.3.242.jar                   | None                                     |
   |       | chickens                          | 6.1.0                     | chickens-6.1.0.jar                                 | None                                     |
   |       | chineseworkshop                   | 1.2.5                     | ChineseWorkshop-1.12.2_1.2.5.jar                   | None                                     |
   |       | chisel                            | MC1.12.2-0.2.1.35         | Chisel-MC1.12.2-0.2.1.35.jar                       | None                                     |
   |       | chiselsandbits                    | 14.29                     | chiselsandbits-14.29.jar                           | None                                     |
   |       | claybucket                        | 1.1                       | ClayBucket-1.12-1.1.jar                            | None                                     |
   |       | clickmachine                      | 1.1.3                     | ClickMachine-1.12.2-1.1.3.jar                      | None                                     |
   |       | clumps                            | 3.1.1                     | Clumps-3.1.1.jar                                   | None                                     |
   |       | codechickenlib                    | 3.2.2.353                 | CodeChickenLib-1.12.2-3.2.2.353-universal.jar      | None                                     |
   |       | cofhcore                          | 4.6.1                     | CoFHCore-1.12.2-4.6.1.22-universal.jar             | None                                     |
   |       | cofhworld                         | 1.3.0                     | CoFHWorld-1.12.2-1.3.0.6-universal.jar             | None                                     |
   |       | commoncapabilities                | 1.4.0                     | CommonCapabilities-1.12-1.4.0.jar                  | None                                     |
   |       | cookingforblockheads              | 6.4.69                    | CookingForBlockheads_1.12.2-6.4.69.jar             | None                                     |
   |       | corail_pillar                     | 4.2.1                     | corail_pillar-4.2.1-1.12.jar                       | None                                     |
   |       | corail_pillar_extension_chisel    | 4.0.0                     | corail_pillar_extension_chisel-4.0.0-1.12.jar      | None                                     |
   |       | craftingtweaks                    | 8.1.9                     | CraftingTweaks_1.12.2-8.1.9.jar                    | None                                     |
   |       | crafttweaker                      | 4.1.13                    | CraftTweaker2-1.12-4.1.13.jar                      | None                                     |
   |       | crafttweakerjei                   | 2.0.2                     | CraftTweaker2-1.12-4.1.13.jar                      | None                                     |
   |       | creativecore                      | 1.9.9                     | CreativeCore_v1.9.35_mc1.12.2.jar                  | None                                     |
   |       | cropdusting                       | 0.7                       | CropDusting-0.7-[1.12.2].jar                       | None                                     |
   |       | cucumber                          | 1.1.3                     | Cucumber-1.12.2-1.1.3.jar                          | None                                     |
   |       | culinaryconstruct                 | 1.3.1                     | culinaryconstruct-1.3.1.jar                        | None                                     |
   |       | cyclopscore                       | 0.11.11                   | CyclopsCore-1.12.2-0.11.11.jar                     | None                                     |
   |       | danknull                          | 1.4.46                    | DankNull-1.12-1.4.46.jar                           | None                                     |
   |       | deepmoblearning                   | 1.12.2-2.2.0              | deepmoblearning-1.12.2-2.2.0-universal.jar         | None                                     |
   |       | deepmoblearningbm                 | 1.12.2-0.9.1              | deepmoblearningbm-1.12.2-0.9.1-universal.jar       | None                                     |
   |       | delivery                          | 1.4.0                     | delivery-1.4.0.jar                                 | None                                     |
   |       | dimensionaledibles                | 1.2                       | DimensionalEdibles-1.12.2-1.2.jar                  | None                                     |
   |       | draconicevolution                 | 2.3.18                    | Draconic-Evolution-1.12.2-2.3.18.329-universal.jar | None                                     |
   |       | eplus                             | 5.0.174                   | EnchantingPlus-1.12.2-5.0.174.jar                  | None                                     |
   |       | endercore                         | 1.12.2-0.5.43             | EnderCore-1.12.2-0.5.43.jar                        | None                                     |
   |       | endercrop                         | 1.12.2-1.6.0              | endercrop-1.12.2-1.6.0.jar                         | None                                     |
   |       | enderio                           | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiobase                       | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderioconduits                   | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderioconduitsappliedenergistics | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderioconduitsopencomputers      | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderioconduitsrefinedstorage     | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiointegrationforestry        | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiointegrationtic             | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiointegrationticlate         | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiomachines                   | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiopowertools                 | 5.0.39                    | EnderIO-1.12.2-5.0.39.jar                          | None                                     |
   |       | enderiozoo                        | 5.0.39                    | EnderIO-zoo-1.12.2-5.0.39.jar                      | None                                     |
   |       | enderstorage                      | 2.4.5.135                 | EnderStorage-1.12.2-2.4.5.135-universal.jar        | None                                     |
   |       | enderutilities                    | 0.7.12                    | enderutilities-1.12.2-0.7.12.jar                   | None                                     |
   |       | engineeredgolems                  | 1.0                       | Engineered Golems-1.0.jar                          | None                                     |
   |       | engineersworkshop                 | 1.0.9.40                  | EngineersWorkshopReborn-1.12.2-1.0.9.40.jar        | None                                     |
   |       | environmentaltech                 | 1.12.2-2.0.19.1           | environmentaltech-1.12.2-2.0.19.1.jar              | None                                     |
   |       | excompressum                      | 3.0.26                    | ExCompressum_1.12.2-3.0.26.jar                     | None                                     |
   |       | exnihilocreatio                   | 1.12-0.3.2                | exnihilocreatio-1.12-0.3.2.jar                     | None                                     |
   |       | extendedcrafting                  | 1.5.1                     | ExtendedCrafting-1.12.2-1.5.1.jar                  | None                                     |
   |       | extrabitmanipulation              | 1.12.2-3.4.1              | ExtraBitManipulation-1.12.2-3.4.1.jar              | None                                     |
   |       | excp                              | 1.0.3b                    | extraCreepers-1.0.3b.jar                           | None                                     |
   |       | extraplanets                      | 1.12.2-0.4.6              | ExtraPlanets-1.12.2-0.4.6.jar                      | None                                     |
   |       | extrautils2                       | 1.0                       | extrautils2-1.12-1.9.8.jar                         | None                                     |
   |       | bigreactors                       | 1.12.2-0.4.5.50           | ExtremeReactors-1.12.2-0.4.5.50.jar                | None                                     |
   |       | farmingforblockheads              | 3.1.26                    | FarmingForBlockheads_1.12.2-3.1.26.jar             | None                                     |
   |       | fastfurnace                       | 1.2.1                     | FastFurnace-1.12.2-1.2.1.jar                       | None                                     |
   |       | fastleafdecay                     | v14                       | FastLeafDecay-v14.jar                              | None                                     |
   |       | fastbench                         | 1.6.0                     | FastWorkbench-1.12.2-1.6.0.jar                     | None                                     |
   |       | fenceoverhaul                     | 1.3.4                     | FenceOverhaul-1.3.4.jar                            | None                                     |
   |       | findme                            | 1.0.2                     | findme-1.12.2-1.0.2-6.jar                          | None                                     |
   |       | fluxnetworks                      | 3.0.19                    | fluxnetworks-1.12.2-3.0.19-21.jar                  | None                                     |
   |       | foamfix                           | 0.10.3-1.12.2             | foamfix-0.10.3-1.12.2.jar                          | None                                     |
   |       | forestry                          | 5.8.2.380                 | forestry_1.12.2-5.8.2.380.jar                      | None                                     |
   |       | forgelin                          | 1.8.2                     | Forgelin-1.8.2.jar                                 | None                                     |
   |       | microblockcbe                     | 2.6.0.79                  | ForgeMultipart-1.12.2-2.6.0.79-universal.jar       | None                                     |
   |       | forgemultipartcbe                 | 2.6.0.79                  | ForgeMultipart-1.12.2-2.6.0.79-universal.jar       | None                                     |
   |       | minecraftmultipartcbe             | 2.6.0.79                  | ForgeMultipart-1.12.2-2.6.0.79-universal.jar       | None                                     |
   |       | forgivingvoid                     | 1.0.21                    | ForgivingVoid_1.12.2-1.0.21.jar                    | None                                     |
   |       | ftblib                            | 5.4.1.77                  | FTBLib-5.4.1.77.jar                                | None                                     |
   |       | ftbutilities                      | 5.3.0.73                  | FTBUtilities-5.3.0.73.jar                          | None                                     |
   |       | cfm                               | 6.2.0                     | furniture-6.2.0-1.12.2.jar                         | None                                     |
   |       | furnus                            | 2.1.8                     | furnus-1.12.2-2.1.8.jar                            | None                                     |
   |       | galacticraftplanets               | 4.0.1.184                 | Galacticraft-Planets-1.12.2-4.0.1.184.jar          | None                                     |
   |       | galacticraftcore                  | 4.0.1.184                 | GalacticraftCore-1.12.2-4.0.1.184.jar              | None                                     |
   |       | gendustry                         | 1.6.5.8                   | gendustry-1.6.5.8-mc1.12.2.jar                     | None                                     |
   |       | guideapi                          | 1.12-2.1.8-63             | Guide-API-1.12-2.1.8-63.jar                        | None                                     |
   |       | hammercore                        | 2.0.4.1                   | HammerCore-1.12.2-2.0.4.1.jar                      | None                                     |
   |       | hatchery                          | 2.1.4                     | hatchery-1.12.2-2.1.4.jar                          | None                                     |
   |       | hungeringdarkness                 | 1.1.0                     | Hungering Darkness-1.12.2-1.1.0.jar                | None                                     |
   |       | huntingdim                        | 1.0.36                    | HuntingDimension-1.12.2-1.0.36.jar                 | None                                     |
   |       | hydrogel                          | 1.1.0                     | HydroGel-1.12.2-1.1.0.jar                          | None                                     |
   |       | ichunutil                         | 7.1.4                     | iChunUtil-1.12.2-7.1.4.jar                         | None                                     |
   |       | ieclochecompat                    | 2.0.6                     | ieclochecompat-2.0.6.jar                           | None                                     |
   |       | immersivecables                   | 1.3.2                     | ImmersiveCables-1.12.2-1.3.2.jar                   | None                                     |
   |       | immersivepetroleum                | 1.1.9                     | immersivepetroleum-1.12.2-1.1.9.jar                | None                                     |
   |       | immersivetech                     | 1.3.10                    | immersivetech-1.12-1.3.10.jar                      | None                                     |
   |       | industrialforegoing               | 1.12.2-1.12.2             | industrialforegoing-1.12.2-1.12.4-228.jar          | None                                     |
   |       | industrialmeat                    | 1.12-1.0.2                | industrialmeat-1.12-1.0.2.jar                      | None                                     |
   |       | infinitylib                       | 1.12.2-1.12.0             | infinitylib-1.12.0.jar                             | None                                     |
   |       | inspirations                      | 1.12.2-0.2.3              | Inspirations-1.12.2-0.2.3.jar                      | None                                     |
   |       | integrationforegoing              | 1.12.2-1.8.2              | IntegrationForegoing-1.12.2-1.8.2.jar              | None                                     |
   |       | inventorytweaks                   | 1.64+dev.145.16d98f2      | InventoryTweaks-1.64+dev.145.jar                   | None                                     |
   |       | jaopca                            | 1.12.2-2.2.8.100          | JAOPCA-1.12.2-2.2.8.100.jar                        | None                                     |
   |       | oredictinit                       | 1.12.2-2.2.1.71           | JAOPCA-1.12.2-2.2.8.100.jar                        | None                                     |
   |       | jei                               | 4.14.4.254                | jei_1.12.2-4.14.4.254.jar                          | None                                     |
   |       | jeibees                           | 0.9.0.5                   | jeibees-0.9.0.5-mc1.12.2.jar                       | None                                     |
   |       | jeid                              | 1.0.2-26                  | JustEnoughIDs-1.0.2-26.jar                         | None                                     |
   |       | kleeslabs                         | 5.4.11                    | KleeSlabs_1.12.2-5.4.11.jar                        | None                                     |
   |       | lagbgonreborn                     | 1.0.2                     | lagbgonreborn-1.0.2.jar                            | None                                     |
   |       | librarianliblate                  | 4.15                      | librarianlib-1.12.2-4.15.jar                       | None                                     |
   |       | librarianlib                      | 4.15                      | librarianlib-1.12.2-4.15.jar                       | None                                     |
   |       | limelib                           | 1.7.12                    | limelib-1.12.2-1.7.12.jar                          | None                                     |
   |       | lunatriuscore                     | 1.2.0.42                  | LunatriusCore-1.12.2-1.2.0.42-universal.jar        | None                                     |
   |       | magipsi                           | 1.3                       | MagicalPsi-1.3.jar                                 | None                                     |
   |       | malisiscore                       | 1.12.2-6.4.0              | malisiscore-1.12.2-6.4.0.jar                       | None                                     |
   |       | malisisdoors                      | 1.12.2-7.3.0              | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |
   |       | mantle                            | 1.12-1.3.3.39             | Mantle-1.12-1.3.3.39.jar                           | None                                     |
   |       | mcjtylib_ng                       | 3.1.0                     | mcjtylib-1.12-3.1.0.jar                            | None                                     |
   |       | mclib                             | 1.0                       | mclib-1.0-1.12.2.jar                               | None                                     |
   |       | mcmultipart                       | 2.5.3                     | MCMultiPart-2.5.3.jar                              | None                                     |
   |       | mekanism                          | 1.12.2-9.4.13.349         | Mekanism-1.12.2-9.4.13.349.jar                     | None                                     |
   |       | mekanismgenerators                | 9.4.11                    | MekanismGenerators-1.12.2-9.4.13.349.jar           | None                                     |
   |       | metalchests                       | v3.9.0.g9b0c79e           | MetalChests-v3.9.0.g9b0c79e.jar                    | None                                     |
   |       | metamorph                         | 1.1.7                     | metamorph-1.1.7-1.12.2.jar                         | None                                     |
   |       | mjrlegendslib                     | 1.12.2-1.1.8              | MJRLegendsLib-1.12.2-1.1.8.jar                     | None                                     |
   |       | mobends                           | 0.24                      | mobends-0.24_for_MC-1.12.jar                       | None                                     |
   |       | mob_grinding_utils                | 0.3.13                    | MobGrindingUtils-0.3.13.jar                        | None                                     |
   |       | modtweaker                        | 4.0.15                    | modtweaker-4.0.15.jar                              | None                                     |
   |       | morebees                          | 1.12.2-2.0.1              | morebees-1.12.2-2.0.1.jar                          | None                                     |
   |       | morechickens                      | 3.2.0                     | morechickens-1.12.2-3.2.0.jar                      | None                                     |
   |       | morelibs                          | 1.0.8                     | morelibs-1.12.2-1.0.8.jar                          | None                                     |
   |       | moreplates                        | 5.4.4                     | moreplates-1.12.2-5.4.4.jar                        | None                                     |
   |       | morphtool                         | 1.2-21                    | Morph-o-Tool-1.2-21.jar                            | None                                     |
   |       | morpheus                          | 1.12-3.3.2                | Morpheus-1.12-3.3.2.jar                            | None                                     |
   |       | morphtweaks                       | 1.3.8                     | MorphTweaks-1.12-1.3.8.jar                         | None                                     |
   |       | movinglightsource                 | 1.0.15                    | movinglightsource-1.12.2-1.0.15.jar                | None                                     |
   |       | mtlib                             | 3.0.5                     | MTLib-3.0.5.jar                                    | None                                     |
   |       | mysticalagradditions              | 1.2.10                    | MysticalAgradditions-1.12.2-1.2.10.jar             | None                                     |
   |       | mysticalagriculture               | 1.7.1                     | MysticalAgriculture-1.12.2-1.7.1.jar               | None                                     |
   |       | mysticallib                       | 1.12.2-1.0.0              | mysticallib-1.12.2-1.0.0.jar                       | None                                     |
   |       | natura                            | 1.12.2-4.3.2.66           | natura-1.12.2-4.3.2.66.jar                         | None                                     |
   |       | networksmanager                   | 12.0.4                    | Networks Manager-12.0.4.jar                        | None                                     |
   |       | nonetherportals                   | 1.0.0                     | nonetherPortals_v1.0.0formc1.12.2.jar              | None                                     |
   |       | notemastahp                       | 1.0.1                     | NoTemaStahp-1.12.2-1.0.1.jar                       | None                                     |
   |       | notenoughwands                    | 1.7.2                     | notenoughwands-1.12-1.7.2.jar                      | None                                     |
   |       | nuclearcraft                      | 2.13                      | NuclearCraft-2.13--1.12.2.jar                      | None                                     |
   |       | ocxnetdriver                      | 1.0.3                     | ocxnetdriver-1.0.3-b17.jar                         | None                                     |
   |       | oeintegration                     | 2.3.4                     | oeintegration-2.3.4.jar                            | None                                     |
   |       | opencomputers                     | 1.7.3.146                 | OpenComputers-MC1.12.2-1.7.3.146.jar               | None                                     |
   |       | oreexcavation                     | 1.4.133                   | OreExcavation-1.4.133.jar                          | None                                     |
   |       | p455w0rdslib                      | 2.0.36                    | p455w0rdslib-1.12.2-2.0.36.jar                     | None                                     |
   |       | harvestcraft                      | 1.12.2zb                  | Pam's HarvestCraft 1.12.2zb.jar                    | None                                     |
   |       | patchouli                         | 1.0-16                    | Patchouli-1.0-16.jar                               | None                                     |
   |       | petrock                           | 0.3.1                     | petrock-0.3.1.jar                                  | None                                     |
   |       | placebo                           | 1.5.0                     | Placebo-1.12.2-1.5.0.jar                           | None                                     |
   |       | plustic                           | 6.5.4.2                   | plustic-6.5.4.2.jar                                | None                                     |
   |       | pneumaticcraft                    | 1.12.2-0.8.4-303          | pneumaticcraft-repressurized-1.12.2-0.8.4-303.jar  | None                                     |
   |       | portalgun                         | 7.0.2                     | PortalGun-1.12.2-7.0.2.jar                         | None                                     |
   |       | practicallogistics2               | 3.0.8                     | practicallogistics2-1.12.2-3.0.8-11.jar            | None                                     |
   |       | psi                               | r1.1-69                   | Psi-r1.1-69.jar                                    | None                                     |
   |       | quantumstorage                    | 4.6.5                     | QuantumStorage-1.12-4.6.5.jar                      | None                                     |
   |       | questbook                         | 3.1.1-1.12                | questbook-3.1.1-1.12.jar                           | None                                     |
   |       | randomthings                      | 4.2.5                     | RandomThings-MC1.12.2-4.2.5.jar                    | None                                     |
   |       | randomtweaks                      | 1.12.2-2.4.0.7            | randomtweaks-1.12.2-2.4.0.7.jar                    | None                                     |
   |       | realfilingcabinet                 | 0.1.79                    | realfilingcabinet-1.12.1-0.1.79.jar                | None                                     |
   |       | reborncore                        | 3.13.1.402                | RebornCore-1.12.2-3.13.1.402-universal.jar         | None                                     |
   |       | redstoneflux                      | 2.1.0                     | RedstoneFlux-1.12-2.1.0.6-universal.jar            | None                                     |
   |       | xreliquary                        | 1.12.2-1.3.4.780          | Reliquary-1.12.2-1.3.4.780.jar                     | None                                     |
   |       | restrictedportals                 | 1.12-0.6.3                | restrictedportals-1.12-0.6.3.jar                   | None                                     |
   |       | rftools                           | 7.60                      | rftools-1.12-7.60.jar                              | None                                     |
   |       | rftoolscontrol                    | 1.9.3                     | rftoolsctrl-1.12-1.9.3.jar                         | None                                     |
   |       | rftoolspower                      | 1.1.2                     | rftoolspower-1.12-1.1.2.jar                        | None                                     |
   |       | roost                             | 1.3.0                     | roost-1.12-1.3.0.jar                               | None                                     |
   |       | rpsideas                          | 2.1.5                     | rpsideas-2.1.5.jar                                 | None                                     |
   |       | rusticthaumaturgy                 | 1.0                       | Rustic Thaumaturgy-3.0.jar                         | None                                     |
   |       | rustic                            | 1.0.15                    | rustic-1.0.15.jar                                  | None                                     |
   |       | scarper                           | 1.1                       | scarper-1.1.jar                                    | None                                     |
   |       | schematica                        | 1.8.0.169                 | Schematica-1.12.2-1.8.0.169-universal.jar          | None                                     |
   |       | storagenetwork                    | 1.5.5                     | SimpleStorageNetwork-1.12.2-1.5.5.jar              | None                                     |
   |       | simplylight                       | 0.6.0                     | simplylight-0.6.0.jar                              | None                                     |
   |       | skeletontweaks                    | 1.0.0                     | skeletontweaks_v1.0.0formc1.12.2.jar               | None                                     |
   |       | snad                              | 1.12.1-1.7.09.16a         | Snad-1.12.1-1.7.09.16a.jar                         | None                                     |
   |       | solarflux                         | 4.32r                     | SolarFluxReborn_1.12.2-4.32r.jar                   | None                                     |
   |       | sonarcore                         | 5.0.19                    | sonarcore-1.12.2-5.0.19-20.jar                     | None                                     |
   |       | spiceoflife                       | 1.3.12                    | SpiceOfLife-mc1.12-1.3.12.jar                      | None                                     |
   |       | bq_standard                       | @VERSION@                 | StandardExpansion-3.4.148.jar                      | None                                     |
   |       | statues                           | 0.8.6.17                  | statues-1.12.X-0.8.6.17.jar                        | None                                     |
   |       | stevescarts                       | 2.4.28.130                | StevesCarts-1.12.2-2.4.28.130.jar                  | None                                     |
   |       | stg                               | 1.12.2-1.2.3              | stg-1.12.2-1.2.3.jar                               | None                                     |
   |       | stoneblockutilities               | 2.1.3                     | StoneBlockUtilities-2.1.3.jar                      | None                                     |
   |       | storagedrawers                    | 1.12-5.3.5                | StorageDrawers-1.12.2-5.3.8.jar                    | None                                     |
   |       | sasit                             | 1.1.14                    | StuffASockInIt-1.12.2-1.1.14.jar                   | None                                     |
   |       | supersoundmuffler                 | 1.0.2.9                   | supersoundmuffler-1.12.1-1.0.2.9.jar               | None                                     |
   |       | surge                             | 2.0.76                    | Surge-1.12.2-2.0.76.jar                            | None                                     |
   |       | sync                              | 7.0.2                     | Sync-1.12.2-7.0.2.jar                              | None                                     |
   |       | tallgates                         | 1.0.0                     | TallGates-1.12.2-1.0.0.1.jar                       | None                                     |
   |       | tconstruct                        | 1.12.2-2.12.0.113         | TConstruct-1.12.2-2.12.0.113.jar                   | None                                     |
   |       | techreborn                        | 2.20.1.889                | TechReborn-1.12.2-2.20.1.889-universal.jar         | None                                     |
   |       | teslacorelib                      | 1.0.15                    | tesla-core-lib-1.12.2-1.0.15.jar                   | None                                     |
   |       | teslacorelib_registries           | 1.0.15                    | tesla-core-lib-1.12.2-1.0.15.jar                   | None                                     |
   |       | thaumcraft                        | 6.1.BETA26                | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |
   |       | tg                                | 0.1.5.0                   | Thaumic_Gadgets_1.12.2_0.1.5.1_tb.26.jar           | None                                     |
   |       | thaumicenergistics                | 2.1.0                     | thaumicenergistics-2.1.0.jar                       | None                                     |
   |       | thaumictinkerer                   | 1.12.2-5.0-353c71c        | thaumictinkerer-1.12.2-5.0-353c71c.jar             | None                                     |
   |       | theoneprobe                       | 1.4.27                    | theoneprobe-1.12-1.4.27.jar                        | None                                     |
   |       | thermaldynamics                   | 2.5.3                     | ThermalDynamics-1.12.2-2.5.3.16-universal.jar      | None                                     |
   |       | thermalexpansion                  | 5.5.2                     | ThermalExpansion-1.12.2-5.5.2.39-universal.jar     | None                                     |
   |       | thermalfoundation                 | 2.6.1                     | ThermalFoundation-1.12.2-2.6.1.22-universal.jar    | None                                     |
   |       | tinker_io                         | rw2.7.1                   | tinker_io-1.12.2-rw2.7.1.jar                       | None                                     |
   |       | tinkeredhegemony                  | @VERSION@                 | TinkeredHegemony-0.2.1.jar                         | None                                     |
   |       | tcomplement                       | ${version}                | TinkersComplement-1.12.2-0.3.0.jar                 | None                                     |
   |       | tinkersoc                         | 0.6                       | tinkersoc-0.6.jar                                  | None                                     |
   |       | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769  | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |
   |       | tp                                | 3.2.31                    | tinyprogressions-1.12.2-3.3.31-Release.jar         | None                                     |
   |       | tombstone                         | 3.3.0                     | tombstone-3.3.0-1.12.jar                           | None                                     |
   |       | topaddons                         | 1.12.2-1.10.1             | topaddons-1.12.2-1.10.1.jar                        | None                                     |
   |       | torchmaster                       | 1.7.1.74                  | torchmaster_1.12.2-1.7.1.74.jar                    | None                                     |
   |       | translocators                     | 2.5.1.77                  | Translocators-1.12.2-2.5.1.77-universal.jar        | None                                     |
   |       | ts2k16                            | 1.2.10                    | TS2K16-1.2.10.jar                                  | None                                     |
   |       | twilightforest                    | 3.8.689                   | twilightforest-1.12.2-3.8.689-universal.jar        | None                                     |
   |       | twistedtweaks                     | 1.12.2-0.6.2              | twistedtweaks-1.12.2-0.6.2.jar                     | None                                     |
   |       | unidict                           | 1.12.2-2.9.2              | UniDict-1.12.2-2.9.2.jar                           | None                                     |
   |       | unloader                          | 1.2.0                     | unloader-1.2.0.jar                                 | None                                     |
   |       | universalmodifiers                | 1.12.2-1.0.16.1           | valkyrielib-1.12.2-2.0.19.1.jar                    | None                                     |
   |       | valkyrielib                       | 1.12.2-2.0.19.1           | valkyrielib-1.12.2-2.0.19.1.jar                    | None                                     |
   |       | vanillafix                        | 1.0.10-SNAPSHOT           | VanillaFix-1.0.10-99.jar                           | None                                     |
   |       | voidislandcontrol                 | 1.5.2                     | voidislandcontrol-1.5.2.jar                        | None                                     |
   |       | waddles                           | 0.6.0                     | Waddles-1.12.2-0.6.0.jar                           | None                                     |
   |       | wanionlib                         | 1.12.2-2.2                | WanionLib-1.12.2-2.2.jar                           | None                                     |
   |       | wct                               | 3.11.88                   | WirelessCraftingTerminal-1.12.2-3.11.88.jar        | None                                     |
   |       | witherskelefix                    | 2.6.2                     | Wither Skeleton Tweaks-1.12.2-2.6.2.jar            | None                                     |
   |       | wizardry                          | 0.9.9                     | wizardry-0.9.9.jar                                 | None                                     |
   |       | woot                              | 1.12.2-1.4.9              | woot-1.12.2-1.4.9.jar                              | None                                     |
   |       | wopper                            | 1.12-r5                   | Wopper-1.12-r5.jar                                 | None                                     |
   |       | worldprimer                       | 0.6.0-dev.20190112.001021 | worldprimer-1.12.2-0.6.0-dev.20190112.001021.jar   | None                                     |
   |       | wrapup                            | 1.12-1.1.3                | WrapUp-1.12-1.1.3.jar                              | None                                     |
   |       | xnet                              | 1.7.6                     | xnet-1.12-1.7.6.jar                                | None                                     |
   |       | ynot                              | 0.2.3                     | YNot-0.2.3.jar                                     | None                                     |
   |       | zerocore                          | 1.12-0.1.2.3              | zerocore-1.12-0.1.2.3.jar                          | None                                     |
   |       | zwangcraft                        | 1.1.0.0                   | zwangcraft-1.1.0.0.jar                             | None                                     |
   |       | immersiveengineering              | 0.12-88                   | ImmersiveEngineering-0.12-88.jar                   | None                                     |
   |       | techreborn_compat                 | 1.0.0                     | TechReborn-ModCompatibility-1.12.2-1.1.0.9.jar     | None                                     |

Loaded coremods (and transformers): RandomPatches (randompatches-1.12.2-1.11.0.3.jar)
com.therandomlabs.randompatches.core.RPTransformer
RandomPatches (randompatches-1.12.2-1.12.0.1.jar)
com.therandomlabs.randompatches.core.RPTransformer
LesslagCorePlugin (lesslag-1.0-1.12.2.jar)

                                  ForgelinPlugin (Forgelin-1.8.2.jar)
                                    
                                  CTMCorePlugin (CTM-MC1.12.2-0.3.3.22.jar)
                                    team.chisel.ctm.client.asm.CTMTransformer
                                  MalisisCorePlugin (malisiscore-1.12.2-6.4.0.jar)
                                    
                                  SurgeLoadingPlugin (Surge-1.12.2-2.0.76.jar)
                                    
                                  EnderCorePlugin (EnderCore-1.12.2-0.5.43.jar)
                                    com.enderio.core.common.transform.EnderCoreTransformer
                                    com.enderio.core.common.transform.SimpleMixinPatcher
                                  VanillaFixLoadingPlugin (VanillaFix-1.0.10-99.jar)
                                    
                                  LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)
                                    lumien.resourceloader.asm.ClassTransformer
                                  AppleCore (AppleCore-mc1.12.2-3.1.4.jar)
                                    squeek.applecore.asm.TransformerModuleHandler
                                  LoadingPlugin (RandomThings-MC1.12.2-4.2.5.jar)
                                    lumien.randomthings.asm.ClassTransformer
                                  IELoadingPlugin (ImmersiveEngineering-core-0.12-88.jar)
                                    blusunrize.immersiveengineering.common.asm.IEClassTransformer
                                  Wizardry Plugin (wizardry-0.9.9.jar)
                                    com.teamwizardry.wizardry.asm.WizardryTransformer
                                  ItemPatchingLoader (ItemPhysic_Full_1.4.17_mc1.12.2.jar)
                                    com.creativemd.itemphysic.ItemTransformer
                                  LibrarianLib Plugin (librarianlib-1.12.2-4.15.jar)
                                    com.teamwizardry.librarianlib.asm.LibLibTransformer
                                  JEIDLoadingPlugin (JustEnoughIDs-1.0.2-26.jar)
                                    org.dimdev.jeid.JEIDTransformer
                                  MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.1.184.jar)
                                    micdoodle8.mods.miccore.MicdoodleTransformer
                                  HCASM (HammerCore-1.12.2-2.0.4.1.jar)
                                    com.zeitheron.hammercore.asm.HammerCoreTransformer
                                  CreativePatchingLoader (CreativeCore_v1.9.35_mc1.12.2.jar)
                                    
                                  CoreMod (Aroma1997Core-1.12.2-2.0.0.0.b162.jar)
                                    
                                  CorePlugin (SmoothFont-mc1.12.2-1.16.2.jar)
                                    bre.smoothfont.asm.Transformer
                                  Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.145.jar)
                                    invtweaks.forge.asm.ContainerTransformer
                                  Botania Tweaks Core (botaniatweaks-1.8.2.jar)
                                    quaternary.botaniatweaks.asm.BotaniaTweakerTransformer
                                  AstralCore (astralsorcery-1.12.2-1.10.10.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.3-1.12.2.jar)
                                    pl.asie.foamfix.coremod.FoamFixTransformer
                                  TransformerLoader (OpenComputers-MC1.12.2-1.7.3.146.jar)
                                    li.cil.oc.common.asm.ClassTransformer

Suspected Mods: Minecraft Forge (forge), Forge Mod Loader (FML)
Profiler Position: N/A (disabled)
Is Modded: Definitely; Server brand changed to 'fml,forge'
Type: Dedicated Server (map_server.txt)

Login Timeout no longer works

I am back to having login timeouts at exactly 30 seconds when connecting to a Forge server running 2770 and RandomPatches 1.10.0.0 with default configuration.

As best as I can tell, since Forge 2760 the networking code has been completely revamped and reorganized. In my own attempts to modify Forge earlier this year I was able to reliably patch any version of Forge to have whatever time-out I needed in FMLNetworkHandler. That file is now completely gone and is perhaps why RandomPatches is no longer affecting login timeout setting. Can anyone confirm this?

Edit: I have no idea what's going on, now I see FMLNetworkHandler in the Github source but not in my IntelliJ workspace. I may be misunderstanding the patches. However, I still am having the timeout after 30 sec.

Transformer loading Minecraft classes

Figured I'd cross-post this from squeek502/AppleCore#129 (comment)

This is an issue worth fixing (I know from experience, see squeek502/AppleCore#19)


My best guess is that your coremod/transformer classes are (unintentionally) loading classes that they shouldn't be. Any class that is imported during transformer loading could fail to be transformed by any transformers that have not been registered in the load order.

I put in a debug print that potentially shows the issue. This is the log after SortingIndex is changed to 2000 in RandomPatches:

[23:30:50] [main/DEBUG] [FML]: Injecting coremod AppleCore \{squeek.applecore.AppleCore\} class transformers
[23:30:50] [main/TRACE] [FML]: Registering transformer squeek.applecore.asm.TransformerModuleHandler
[23:30:50] [main/DEBUG] [FML]: Injection complete
[23:30:50] [main/DEBUG] [FML]: Running coremod plugin for AppleCore \{squeek.applecore.AppleCore\}
...
[23:30:50] [main/DEBUG] [FML]: Injecting coremod RandomPatches \{com.therandomlabs.randompatches.core.RPCore\} class transformers
[23:30:50] [main/TRACE] [FML]: Registering transformer com.therandomlabs.randompatches.core.RPTransformer
[23:30:50] [main/INFO] [STDOUT]: [squeek.applecore.asm.module.ModuleFoodStats:transform:30]: [applecore] Modifying EntityPlayer
[23:30:50] [main/DEBUG] [FML]: Injection complete
[23:30:50] [main/DEBUG] [FML]: Running coremod plugin for RandomPatches \{com.therandomlabs.randompatches.core.RPCore\}

As you can imagine, if the load orders were reversed, then the EntityPlayer class would be sent to transformers before AppleCore's transformer was registered, meaning AppleCore would never have a chance to modify it.

Best practice for core mods is to keep them as insular as possible--never import any Minecraft classes or any classes that might import Minecraft classes. Your RPTransformer class imports com.therandomlabs.randompatches.RandomPatches, which in turn imports net.minecraftforge.client.ClientCommandHandler/net.minecraftforge.common.MinecraftForge, which I'm assuming is causing this issue.

Changing the sort order will fix it for now, but any coremod with a SortingIndex above yours can have similar conflicts.

[1.14.4] Minecraft Window icon and titel

Hi
As you can see on the image below, the title of the minecraft window has changed to "RandomPatches" and the icon is missing
image

Tried on forge 28.0.24 and .27
randompatches-1.14.4-1.17.3.0.jar

Icon config doesn't work on MacOS

Well one of my friends was using MacOS to play minecraft with this mod
Here's more informations about the game:
Minecraft version 1.12.2
Forge version 2838
RP version 1.16.2.1
The Icon config just do nothing!
The config file was used utf-8 so it has nothing to do with this

IllegalArgumentException: Multiple entries with same key

randompatches-1.12.2-1.14.0.0

Time: 3/2/19 7:51 AM
Description: Exception in server tick loop

java.lang.IllegalArgumentException: Multiple entries with same key: randompatches=Wrapped{randompatches} and randompatches=Wrapped{randompatches}. To index multiple values under a key, use Multimaps.index.
	at com.google.common.collect.Maps.uniqueIndex(Maps.java:1385)
	at com.google.common.collect.Maps.uniqueIndex(Maps.java:1341)
	at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427)
	at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:566)
	at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)
	at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)
	at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)
	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
	at java.lang.Thread.run(Thread.java:748)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Thread: Server thread
Stacktrace:
	at com.google.common.collect.Maps.uniqueIndex(Maps.java:1385)
	at com.google.common.collect.Maps.uniqueIndex(Maps.java:1341)
	at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:427)
	at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:566)

-- Sponge PhaseTracker --
Details:
	Phase Stack: [Empty stack]
Stacktrace:
	at net.minecraft.server.MinecraftServer.handler$onCrashReport$zjn000(MinecraftServer.java:3965)
	at net.minecraft.server.MinecraftServer.func_71230_b(MinecraftServer.java:889)
	at net.minecraft.server.dedicated.DedicatedServer.func_71230_b(DedicatedServer.java:371)
	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:558)
	at java.lang.Thread.run(Thread.java:748)

[Question] About It's the little things mod

Is it possible to use RandomPatches' configurable window title/icon option even when Itlt is installed? I'd want to use this mod's implementation whilst still having Itlt for other purposes.
Thanks for the help!

Doesn't work / failed to patch class / conflict with other mod?

Hello. This mod doesn't seem to help us. My friend keeps disconnecting when logging in, either with "timed out" or "disconnected". I have a powerful new Xeon W-2125 with 32G of RAM, he has a weak PC. We're trying to play over "LAN", without a dedicated server. We can sometimes connect on some days (unstable) but on other days not at all. I'm attaching my debug log for the latest session, could you perhaps identify any mods that could be conflicting with yours? http://rgho.st/private/7GfKCxT55/5771e9fb3550ae3db929154bb6c3796e

Our options are:
I:keepAlivePacketInterval=30
I:loginTimeout=900
I:readTimeout=180

I think these lines are of special interest:

[17:03:54] [main/INFO] [STDOUT]: [com.therandomlabs.randompatches.RPTransformer:transform:38]: Patching class: net.minecraft.network.NetHandlerPlayServer
[17:03:54] [main/INFO] [STDOUT]: [com.therandomlabs.randompatches.RPTransformer:findUpdateMethod:308]: Patching method: e
[17:03:54] [main/INFO] [STDERR]: [com.therandomlabs.randompatches.RPTransformer:transform:52]: Failed to patch class: net.minecraft.network.NetHandlerPlayServer
[17:03:54] [main/INFO] [Gotta Go Fast]: patching net.minecraft.network.NetHandlerPlayServer.processVehicleMove(CPacketVehicleMove)
[17:03:54] [main/INFO] [Gotta Go Fast]: patching net.minecraft.network.NetHandlerPlayServer.processPlayer(CPacketPlayer)

UPD: I did a forced modpack update (legacy FTB launcher), updated to latest version of randompatches, disabled gotta go fast, and this started to work. It applies the patch, lets us connect.

28.0.45

Hi
forge 28.0.45

https://s1.sunekaer.com/files/crash-2019-08-06_19.35.02-client.txt

at net.minecraftforge.fml.hooks.BasicEventHooks.onPreClientTick(BasicEventHooks.java:104) ~[?:?] {}
at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1270) ~[?:?] {pl:accesstransformer:B,xf:fml:randompatches:RandomPatches Minecraft Transformer,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.func_195542_b(Minecraft.java:865) [?:?] {pl:accesstransformer:B,xf:fml:randompatches:RandomPatches Minecraft Transformer,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:384) [?:?] {pl:accesstransformer:B,xf:fml:randompatches:RandomPatches Minecraft Transformer,pl:runtimedistcleaner:A}

Icon Config

Hey o/

I'm having some trouble getting the Window Icon configuration to work. May I ask which image format it accepts?

error loop when someone gets disconnected

if someone gets disconnected for one reason or another this error happens on loop, taking up a lot of the ram.

[18:10:31] [Netty Server IO #3/ERROR] [FML]: NetworkDispatcher exception
java.io.IOException: An existing connection was forcibly closed by the remote host
        at sun.nio.ch.SocketDispatcher.writev0(Native Method) ~[?:1.8.0_171]
        at sun.nio.ch.SocketDispatcher.writev(Unknown Source) ~[?:1.8.0_171]
        at sun.nio.ch.IOUtil.write(Unknown Source) ~[?:1.8.0_171]
        at sun.nio.ch.SocketChannelImpl.write(Unknown Source) ~[?:1.8.0_171]
        at io.netty.channel.socket.nio.NioSocketChannel.doWrite(NioSocketChannel.java:432) ~[NioSocketChannel.class:?]
        at io.netty.channel.AbstractChannel$AbstractUnsafe.flush0(AbstractChannel.java:856) [AbstractChannel$AbstractUnsafe.class:?]
        at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.forceFlush(AbstractNioChannel.java:368) [AbstractNioChannel$AbstractNioUnsafe.class:?]
        at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:618) [NioEventLoop.class:?]
        at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:559) [NioEventLoop.class:?]
        at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:476) [NioEventLoop.class:?]
        at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:438) [NioEventLoop.class:?]
        at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [SingleThreadEventExecutor$5.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_171]

[FEATURE] MC-2025 fix

I think it would be great if you coild integrate the fix for MC-2025 untill we wait for MC 1.13 which should have it fixed upstream.

The fix is to add code to the Entity.class:

In writeToNBT, somewhere within the try block, do the following:

AxisAlignedBB aabb = this.getEntityBoundingBox();
compound.setTag("AABB", this.newDoubleNBTList(
    aabb.minX, aabb.minY, aabb.minZ, aabb.maxX, aabb.maxY, aabb.maxZ));

There are two places in readFromNBT that call setPosition, which resets the AABB based on entity width. It is very important that this new code be inserted after those calls. This needs to be the very last thing inside of the try block.

So right after this:

if (this.shouldSetPosAfterLoading())
{                
    this.setPosition(this.posX, this.posY, this.posZ);
}

Insert this code:

if (compound.hasKey("AABB")) {
    NBTTagList aabb = compound.getTagList("AABB", 6);
    this.setEntityBoundingBox(new AxisAlignedBB(aabb.getDoubleAt(0), aabb.getDoubleAt(1),
                                                aabb.getDoubleAt(2), aabb.getDoubleAt(3),
                                                aabb.getDoubleAt(4), aabb.getDoubleAt(5)));
}       

(fix from https://www.reddit.com/r/Mojira/comments/8pgd4q/final_and_proper_fix_to_mc2025_simple_reliable/ )

Server crash

[20:21:25] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
net.minecraft.util.ReportedException: Ticking block entity
	at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:773) ~[MinecraftServer.class:?]
	at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:397) ~[nz.class:?]
	at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) ~[MinecraftServer.class:?]
	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
	at java.lang.Thread.run(Thread.java:748) [?:1.8.0_181]
Caused by: java.lang.NullPointerException
	at mods.railcraft.common.blocks.machine.worldspike.TileWorldspike.func_73660_a(TileWorldspike.java:268) ~[TileWorldspike.class:?]
	at net.minecraft.world.World.func_72939_s(World.java:1835) ~[amu.class:?]
	at net.minecraft.world.WorldServer.func_72939_s(WorldServer.java:613) ~[oo.class:?]
	at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:767) ~[MinecraftServer.class:?]
	... 4 more

Crash log: https://pastebin.com/7eadnZjA

Server crash in NetHandlerPlayServer

As of 1.12.2-1.2.1.0, server crashes in NetHandlerPlayServer.

[18:01:56] [Server thread/ERROR]: Encountered an unexpected exception
java.lang.NoSuchFieldError: g
>       at net.minecraft.network.NetHandlerPlayServer.func_73660_a(NetHandlerPlayServer.java:231) ~[pa.class:?]
>       at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:209) ~[NetworkDispatcher$1.class:?]
>       at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:285) ~[gw.class:?]
>       at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:180) ~[oz.class:?]
>       at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:790) ~[MinecraftServer.class:?]
>       at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:396) ~[nz.class:?]
>       at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) ~[MinecraftServer.class:?]
>       at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
>       at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]

RandomPatches breaks ExtraUtils Golden Lasso

Original issue: EnigmaticaModpacks/Enigmatica2Expert#460

Hello o/

It appears RandomPatches makes Golden Lassos unable to move entities correctly, please see the original issue for a very thorough explaination. The user DedN00b was kind enough to test the issue, and he discovered that removing RandomPatches, or downgrading to version 1.8.0.0 fixed the issue.

Could this be caused by implementing the fix for MC-2025.?

Versions

  • Minecraft 1.12.2
  • Forge 1.12.2-14.23.5.2768
  • RandomPatches, all versions above 1.12.2-1.8.0.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.