Jump to content

[1.7.10] How to create an addon for a mod?


winnetrie

Recommended Posts

Hello, i'm new to modding and also this forum.

I'm also new to java, but i have a basic understanding of c++. It looks alot the same in my opinion!

I looked into several tutorials and learned alot in a short time.

I've recently started creating my own mod and it goes pretty well atm.(been busy for 3 weeks now).

I made a bunch of new stones and stairs and slabs (and yes the slabs work like they should).

 

But now i want to know how to start for making an addon for an existing mod.

I want to make an addon for Biomes O' Plenty, just because i like this mod very very much.

I just don't know where to start and how?

 

For example:

 

I want to make stairs for let's say ashstone. I know how to make stairs, but how to load in into my mod?

I hope someone can help me showing me the direction.

 

greetz

 

Link to comment
Share on other sites

I don't really have time to dig into that mod's forum/whatever, but you should find it.

 

Look for either API or decompiled source.

For source - just add it and you are fine.

For API - throw it somewhere, go to Build Path -> "Libraries -> Add JARs.... Add API.jar.

Then (as any API should) you can attach source to API (find it in list and add API-src.zip/jar.

Any how-to can be found on google.

 

Add dependency to your @Mod.

@Mod(dependencies = "required-after:APIModID@[1.0.0.0,);") // adding @ defines "minimal version".

There are also other dependency keys - google them.

 

Above is how to get references to actual mod. If you want mod to just run in background - throw it into /mods/.

Note - you should never do both (add to /mods/ and libraries) - it will attempts to load twice.

 

Note: There were some changes in 1.8+ regarding running obfuscated mods - still in your case you need API/decomp src.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

  • 3 weeks later...

Now i can see the biome o plenty mod in the reference lib, and everything is there. I can see in all classes etc etc.

But when i start the game now i get this error:

There was a severe problem during mod loading that has caused the game to fail

cpw.mods.fml.common.LoaderException: java.lang.NoSuchMethodError: net.minecraft.client.Minecraft.func_71410_x()Lnet/minecraft/client/Minecraft;

 

in the error i see this too:

 

Caused by: java.lang.NoSuchMethodError: net.minecraft.client.Minecraft.func_71410_x()Lnet/minecraft/client/Minecraft;

at biomesoplenty.ClientProxy.<init>(ClientProxy.java:49)

Can i fix this?

Link to comment
Share on other sites

I fixed it with installing code chicken core. it does the deobf while running it. Now it works fine.

How do i use now an existing block from that mod ?

For example i want to make stairs from ashStone.

I tried this:

GameRegistry.registerBlock(ashstonestairs = new Customstairs(GameData.getBlockRegistry().getObject("BiomesOPlenty:ashStone"), 0).setBlockName("ashstonestairs"),"ashstonestairs" ).setCreativeTab(TemBlocks.extrastairs);

The game starts but the block has no textures. Even when setting manually a texture with .setBlockTextureName("something") it has no texture.

I made a class for the addon, here i add all the stuff i want to add when having the mod installed.

I did a check in the class where i register all my own blocks if the mod is present and if yes then load all the "additions" for it.

if(Loader.isModLoaded("BiomesOPlenty")){
	BOPBlocksAddon.init();
	}

This works all fine, i just have no textures. So what am i doing wrong?

 

Link to comment
Share on other sites

I fixed it with installing code chicken core. it does the deobf while running it. Now it works fine.

How do i use now an existing block from that mod ?

For example i want to make stairs from ashStone.

I tried this:

GameRegistry.registerBlock(ashstonestairs = new Customstairs(GameData.getBlockRegistry().getObject("BiomesOPlenty:ashStone"), 0).setBlockName("ashstonestairs"),"ashstonestairs" ).setCreativeTab(TemBlocks.extrastairs);

The game starts but the block has no textures. Even when setting manually a texture with .setBlockTextureName("something") it has no texture.

I made a class for the addon, here i add all the stuff i want to add when having the mod installed.

I did a check in the class where i register all my own blocks if the mod is present and if yes then load all the "additions" for it.

if(Loader.isModLoaded("BiomesOPlenty")){
	BOPBlocksAddon.init();
	}

This works all fine, i just have no textures. So what am i doing wrong?

 

Are you sure you have the right directory / folder and everything?

 

The texture name would be: :modid/ + name

e.g. for something mymod with a block called baddirt

setBlockTextureName(":mymod/baddirt");

 

while if you used a subfolder it would be:  :modid/ + subdirectory + name

e.g. fro something with a graphic at

src/main/resources/assets/mf1inmf2/textures/blocks/slate0.png

setBlockTextureName(":mf1inmf2/basic/slate0");

 

Note that I've yet to make stairs, so I don't know about them specifically, so if its a stairs thing that's going wrong I probably can't help -- so far I've just made basic blocks and meta-block varieties, since most of my experience in modding is world gen.

Developer of Doomlike Dungeons.

Link to comment
Share on other sites

this is what i see in the console when i start up and load a world:

 

[14:43:21] [main/INFO] [GradleStart]: Extra: []

[14:43:21] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Timmy/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

[14:43:21] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[14:43:21] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[14:43:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[14:43:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

[14:43:21] [main/INFO] [FML]: Forge Mod Loader version 7.99.39.1566 for Minecraft 1.7.10 loading

[14:43:21] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_73, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jdk1.8.0_73\jre

[14:43:21] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[14:43:21] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

[14:43:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[14:43:22] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin

[14:43:22] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[14:43:22] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.asm.MCPDeobfuscationTransformer.LoadPlugin

[14:43:22] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.CodeChickenCorePlugin

[14:43:22] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[14:43:22] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[14:43:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[14:43:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[14:43:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[14:43:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[14:43:22] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[14:43:23] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[14:43:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[14:43:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[14:43:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[14:43:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[14:43:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[14:43:24] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

[14:43:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

[14:43:24] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[14:43:25] [main/INFO]: Setting user: Player116

[14:43:27] [Client thread/INFO]: LWJGL Version: 2.9.1

[14:43:28] [Client thread/INFO] [sTDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----

// Everything's going to plan. No, really, that was supposed to happen.

 

Time: 25/04/16 14:43

Description: Loading screen debug info

 

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR

 

 

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

---------------------------------------------------------------------------------------

 

-- System Details --

Details:

Minecraft Version: 1.7.10

Operating System: Windows 7 (amd64) version 6.1

Java Version: 1.8.0_73, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 821351312 bytes (783 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML:

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 364.51' Renderer: 'GeForce GTX 560/PCIe/SSE2'

[14:43:28] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[14:43:28] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1566 Initialized

[14:43:28] [Client thread/INFO] [FML]: Replaced 183 ore recipies

[14:43:28] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[14:43:28] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer

[14:43:28] [Client thread/INFO] [FML]: Searching C:\Users\Timmy\Desktop\modding tut\eclipse\mods for mods

[14:43:28] [Client thread/INFO] [FML]: Also searching C:\Users\Timmy\Desktop\modding tut\eclipse\mods\1.7.10 for mods

[14:43:34] [Client thread/INFO] [FML]: Forge Mod Loader has identified 6 mods to load

[14:43:34] [Client thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.138-dev.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.

[14:43:35] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, tem, BiomesOPlenty] at CLIENT

[14:43:35] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, tem, BiomesOPlenty] at SERVER

[14:43:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Tim's Expansion Mod, FMLFileResourcePack:Biomes O' Plenty

[14:43:35] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[14:43:35] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations

[14:43:35] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations

[14:43:35] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[14:43:35] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[14:43:37] [Client thread/INFO] [biomesOPlenty]: Trail info successfully received from remote.

[14:43:37] [Client thread/INFO] [FML]: Applying holder lookups

[14:43:37] [Client thread/INFO] [FML]: Holder lookups applied

[14:43:37] [Client thread/INFO] [FML]: Injecting itemstacks

[14:43:37] [Client thread/INFO] [FML]: Itemstack injection complete

[14:43:37] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[14:43:37] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

[14:43:37] [Thread-9/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

[14:43:37] [Thread-9/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[14:43:38] [Thread-9/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

[14:43:38] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[14:43:38] [sound Library Loader/INFO]: Sound engine started

[14:43:41] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas

[14:43:41] [Client thread/INFO]: Created: 16x16 textures/items-atlas

[14:43:41] [Client thread/ERROR] [CodeChickenCore]: Unable to do mod description scrolling due to lack of stencil buffer

[14:43:41] [Client thread/INFO] [FML]: Injecting itemstacks

[14:43:41] [Client thread/INFO] [FML]: Itemstack injection complete

[14:43:41] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 6 mods

[14:43:41] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Tim's Expansion Mod, FMLFileResourcePack:Biomes O' Plenty

[14:43:42] [Client thread/INFO]: Created: 512x512 textures/blocks-atlas

[14:43:42] [Client thread/INFO]: Created: 512x256 textures/items-atlas

[14:43:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[14:43:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...

[14:43:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:    Author: Paul Lamb, www.paulscode.com

[14:43:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[14:43:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[14:43:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

[14:43:42] [Thread-12/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

[14:43:42] [Thread-12/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[14:43:42] [Thread-12/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

[14:43:43] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[14:43:43] [sound Library Loader/INFO]: Sound engine started

[14:44:41] [server thread/INFO]: Starting integrated minecraft server version 1.7.10

[14:44:41] [server thread/INFO]: Generating keypair

[14:44:41] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[14:44:41] [server thread/INFO] [FML]: Applying holder lookups

[14:44:41] [server thread/INFO] [FML]: Holder lookups applied

[14:44:41] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@7d7e292d)

[14:44:41] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@7d7e292d)

[14:44:41] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@7d7e292d)

[14:44:41] [server thread/INFO]: Preparing start region for level 0

[14:44:42] [server thread/INFO]: Changing view distance to 12, from 10

[14:44:43] [Netty Client IO #0/INFO] [FML]: Server protocol version 2

[14:44:43] [Netty IO #1/INFO] [FML]: Client protocol version 2

[14:44:43] [Netty IO #1/INFO] [FML]: Client attempting to join with 6 mods : CodeChickenCore@1.0.7.47,FML@7.10.99.99,Forge@10.13.4.1566,mcp@9.05,tem@1.1.0,BiomesOPlenty@2.1.0

[14:44:43] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT

[14:44:43] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER

[14:44:43] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[14:44:43] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established

[14:44:43] [server thread/INFO]: Player116[local:E:ef1dd6ca] logged in with entity id 412 at (32.679943133582384, 65.0, 266.68128256586186)

[14:44:43] [server thread/INFO]: Player116 joined the game

[14:44:48] [server thread/INFO]: Saving and pausing game...

[14:44:48] [server thread/INFO]: Saving chunks for level 'New World'/Overworld

[14:44:48] [server thread/INFO]: Saving chunks for level 'New World'/Nether

[14:44:48] [server thread/INFO]: Saving chunks for level 'New World'/The End

 

in my opinion nothing special.

As for the texture i do not apply 1, because i make stairs out of that block and that block has a texture.

At least this works for my own blocks. If i change the biome o plenty block into 1 of my own blocks or 1 of minecraft, it then works.

But just in case i tested it with supplying a texture of my own and also tested it with supplying the texture it from BOP.

It also see no error saying it has no texture. So somehow it knows the texture but does not apply it.

 

Link to comment
Share on other sites

So i tried something new, based on some info i found.

public static final void init(){

	 GameRegistry.registerBlock(ashstonestairs = new Customstairs(getBlock("BiomesOPlenty:ashStone"), 0).setBlockName("ashstonestairs"),"ashstonestairs" ).setCreativeTab(TemBlocks.extrastairs);


}
public static Block getBlock(String name) {
	Block block = (Block) Block.blockRegistry.getObject(name);
	if (block == null || block == Blocks.air)
		throw new NullPointerException("Could not find any blocks named " + name);
	return block;
}

But now it gives me that error, wich is weird because the block IS there.

If i try to supply a block from minecraft or 1 of mine it works! What am i doing wrong?

Why can't it find the block, i'm very sure the name is correct. I can also find the block ingame in the bop tab.

 

EDIT:

I tried initializing it in the postinit of my proxy, because you never know and it worked...

 

package winnetrie.tem;

import winnetrie.tem.block.BOPBlocksAddon;
import winnetrie.tem.block.TemBlocks;
import winnetrie.tem.block.ColoredSlab;
import winnetrie.tem.crafting.TemRecipes;
import winnetrie.tem.item.TemItems;
import winnetrie.tem.item.TemTools;
import cpw.mods.fml.common.Loader;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;

public class CommonProxy {
public void preInit(FMLPreInitializationEvent event) {
	TemItems.init();
	TemBlocks.init();
	TemTools.init();





    }

    public void init(FMLInitializationEvent event) {
    	TemRecipes.init();
    	GameRegistry.registerWorldGenerator(new ChalkStoneGenerator(), 1);

    }

    public void postInit(FMLPostInitializationEvent event) {
    	if(Loader.isModLoaded("BiomesOPlenty")){
		BOPBlocksAddon.init();
		}
    }



}

I have all my own block in the preinit

Why do i have to put the addon block in the postinit to let it work?

Is this because the mod has to be loaded first before you can qeue something?

It now works but if something is still not good or wrong i'll be happy to hear it.

Link to comment
Share on other sites

Ah!  Now I know what's happening, though should have thought of it before.  Its about the order the mods load.  Your mod was being loaded before BoP, so the BoP resources weren't there yet.  By moving it to post init it insured that all other mods had been at least loaded (and should have gone through pre-init and init as well).  By putting it in pre-init it meant that some mods might not even have been loaded.

 

You should try defining and registering blocks in init -- technically pre-init is for things like reading in config files and setting options.  Init is for initializing your main content, like including blocks, and post init is there to allow for inter-mod compatibility, by allowing things to be done after other mods have initialized.  Register in init should work, since BoP resources should be loaded by then, but if not you can always go back to post-init.  But doing this in pre-init was not the correct place and probably cause the problem.

 

EDIT: The reason post-init might not be the best place is that it could cause problem if another mod wants to use your block -- for example, I have Doomlike Dungeons read in themes in post-init so blocks from other mods can be used -- if you're block didn't exist yet then my mod might crash if someone had added it to a theme.

Developer of Doomlike Dungeons.

Link to comment
Share on other sites

Blocks and items should be registered in preInit, not init.

 

Use the

dependencies

attribute of your

@Mod

annotation (as Ernio said) to ensure your mod loads after BoP.

 

Edit: It was Ernio who originally mentioned the

dependencies

attribute, not diesieben07 as I said previously.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

 

Use the

dependencies

attribute of your

@Mod

annotation (as diesieben07 said) to ensure your mod loads after BoP.

wouldn't that make my mod depending on BOP? If so, i don't want that.

My mod is a mod on his own, but whenever BOP is installed too you have the extra stuff

Link to comment
Share on other sites

 

Use the

dependencies

attribute of your

@Mod

annotation (as diesieben07 said) to ensure your mod loads after BoP.

wouldn't that make my mod depending on BOP? If so, i don't want that.

My mod is a mod on his own, but whenever BOP is installed too you have the extra stuff

 

That is true.  If your mod really is an add-on it should have the other as a dependency, but if its not that's a problem.  I know there is a way to make a mod a "soft" dependency, that doesn't require the other but loads after it because Lycanite did that with my mod -- but I don't know how (its something I've been wanting to learn myself).  But if its not technically an add-on, if its its own mod, it really shouldn't have a hard dependency.

Developer of Doomlike Dungeons.

Link to comment
Share on other sites

before:xyz means "load before xyz if it present"

required-before:xyz "load before xyz and fail if it's missing"

 

Same with after.

 

Ow,this is nice. I didn't know you can do "before" and "after" alone.

I always thought it has to be "required-after" or "required-before".

 

thank you very much!! Seems to work all fine now!

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello! I'm trying to get Better MC to work on my computer and every time I try and run a forge version above 1.16.5 it crashes with an error code. The version I'm currently trying is 1.19.2 and this is the error report:     # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff9dec82b60, pid=6820, tid=10168 # # JRE version: OpenJDK Runtime Environment Microsoft-8035246 (17.0.8+7) (build 17.0.8+7-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-8035246 (17.0.8+7-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C [atio6axx.dll+0x192b60] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: # https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. #   --------------- S U M M A R Y ------------   Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dos.name=Windows 10 -Dos.version=10.0 -Xss1M -Djava.library.path=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\bin\0e48f9e2af6056af7b522442c059518e5791f473 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.10.25 -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,forge-43.3.2.jar,forge-43.3.2 -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries --module-path=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm/9.5/asm-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx11040m -Xms256m -Dminecraft.applet.TargetDirectory=C:\Users\VJHCREATIONS\curseforge\minecraft\Instances\Better MC [FORGE] - BMC3 -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -Dlog4j.configurationFile=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml cpw.mods.bootstraplauncher.BootstrapLauncher --username VictheGammr --version forge-43.3.2 --gameDir C:\Users\VJHCREATIONS\curseforge\minecraft\Instances\Better MC [FORGE] - BMC3 --assetsDir C:\Users\VJHCREATIONS\curseforge\minecraft\Install\assets --assetIndex 1.19 --uuid f52be391d19441d4b3dfedc6c3bd6bd9 -hbFX1YxSkep5l4SaFGh3sd0 --clientId M2FiOTEyM2EtMWIxYy00NTdjLWExYmEtMTQxNDNkNjdjZDdj --xuid 2535424482556844 --userType msa --versionType release --width 1024 --height 768 --launchTarget forgeclient --fml.forgeVersion 43.3.2 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853   Host: 12th Gen Intel(R) Core(TM) i3-12100, 8 cores, 31G, Windows 10 , 64 bit Build 19041 (10.0.19041.3393) Time: Wed Oct 4 22:53:38 2023 Eastern Daylight Time elapsed time: 17.413401 seconds (0d 0h 0m 17s)   --------------- T H R E A D ---------------   Current thread (0x00000264b7b53600): JavaThread "Render thread" [_thread_in_native, id=10168, stack(0x000000a75a100000,0x000000a75a200000)]   Stack: [0x000000a75a100000,0x000000a75a200000], sp=0x000000a75a1fab98, free space=1002k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [atio6axx.dll+0x192b60]   Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 org.lwjgl@3.3.1+7 j org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 org.lwjgl.glfw@3.3.1+7 j org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 org.lwjgl.glfw@3.3.1+7 j net.minecraftforge.client.loading.NoVizFallback.lambda$fallback$0(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+28 forge@43.3.2 j net.minecraftforge.client.loading.NoVizFallback$$Lambda$4425+0x0000000800e0d800.getAsLong()J+16 forge@43.3.2 j net.minecraftforge.fml.loading.progress.EarlyProgressVisualization$Visualization$$Lambda$4426+0x0000000800e09690.apply(Ljava/lang/Object;)Ljava/lang/Object;+4 fmlloader@1.19.2-43.3.2 J 4424 c2 java.util.Optional.map(Ljava/util/function/Function;)Ljava/util/Optional; java.base@17.0.8 (30 bytes) @ 0x00000264c2f39908 [0x00000264c2f398a0+0x0000000000000068] j net.minecraftforge.fml.loading.progress.EarlyProgressVisualization$Visualization.handOffWindow(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+48 fmlloader@1.19.2-43.3.2 j net.minecraftforge.fml.loading.progress.EarlyProgressVisualization.handOffWindow(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+9 fmlloader@1.19.2-43.3.2 j com.mojang.blaze3d.platform.Window.<init>(Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V+287 minecraft@1.19.2 j net.minecraft.client.renderer.VirtualScreen.m_110872_(Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window;+15 minecraft@1.19.2 j net.minecraft.client.Minecraft.<init>(Lnet/minecraft/client/main/GameConfig;)V+739 minecraft@1.19.2 j net.minecraft.client.main.Main.m_239872_([Ljava/lang/String;Z)V+1395 minecraft@1.19.2 j net.minecraft.client.main.Main.main([Ljava/lang/String;)V+12 minecraft@1.19.2 v ~StubRoutines::call_stub j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.8 j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.8 j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.8 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.8 j net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(Ljava/lang/ModuleLayer;[Ljava/lang/String;)V+40 fmlloader@1.19.2-43.3.2 j net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler$$Lambda$896+0x00000008004bb080.run()V+8 fmlloader@1.19.2-43.3.2 j cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch([Ljava/lang/String;Ljava/lang/ModuleLayer;)V+11 cpw.mods.modlauncher@10.0.8 j cpw.mods.modlauncher.LaunchServiceHandler.launch(Ljava/lang/String;[Ljava/lang/String;Ljava/lang/ModuleLayer;Lcpw/mods/modlauncher/TransformingClassLoader;Lcpw/mods/modlauncher/LaunchPluginHandler;)V+58 cpw.mods.modlauncher@10.0.8 j cpw.mods.modlauncher.LaunchServiceHandler.launch(Lcpw/mods/modlauncher/ArgumentHandler;Ljava/lang/ModuleLayer;Lcpw/mods/modlauncher/TransformingClassLoader;Lcpw/mods/modlauncher/LaunchPluginHandler;)V+21 cpw.mods.modlauncher@10.0.8 j cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+310 cpw.mods.modlauncher@10.0.8 j cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+78 cpw.mods.modlauncher@10.0.8 j cpw.mods.modlauncher.BootstrapLaunchConsumer.accept([Ljava/lang/String;)V+1 cpw.mods.modlauncher@10.0.8 j cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(Ljava/lang/Object;)V+5 cpw.mods.modlauncher@10.0.8 j cpw.mods.bootstraplauncher.BootstrapLauncher.main([Ljava/lang/String;)V+515 cpw.mods.bootstraplauncher@1.1.2 v ~StubRoutines::call_stub   siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff   Register to memory mapping:   RIP=0x00007ff9dec82b60 atio6axx.dll RAX=0x0 is NULL RBX=0x00007ff9e24c33b0 atio6axx.dll RCX=0x2e73646f6d2e7770 is an unknown value RDX=0x00000000000000d1 is an unknown value RSP=0x000000a75a1fab98 is pointing into the stack for thread: 0x00000264b7b53600 RBP=0x000000a75a1fad00 is pointing into the stack for thread: 0x00000264b7b53600 RSI=0x00007ff9e23d2d40 atio6axx.dll RDI=0x000000a75a1faff0 is pointing into the stack for thread: 0x00000264b7b53600 R8 =0x00000000000001a5 is an unknown value R9 =0x2e73646f6d2e7770 is an unknown value R10=0x0 is NULL R11=0x0000000000000200 is an unknown value R12=0x00007ff9e24c3408 atio6axx.dll R13=0x00007ff9e24c5c08 atio6axx.dll R14=0x00007ff9e24c33b0 atio6axx.dll R15=0x0 is NULL   Registers: RAX=0x0000000000000000, RBX=0x00007ff9e24c33b0, RCX=0x2e73646f6d2e7770, RDX=0x00000000000000d1 RSP=0x000000a75a1fab98, RBP=0x000000a75a1fad00, RSI=0x00007ff9e23d2d40, RDI=0x000000a75a1faff0 R8 =0x00000000000001a5, R9 =0x2e73646f6d2e7770, R10=0x0000000000000000, R11=0x0000000000000200 R12=0x00007ff9e24c3408, R13=0x00007ff9e24c5c08, R14=0x00007ff9e24c33b0, R15=0x0000000000000000 RIP=0x00007ff9dec82b60, EFLAGS=0x0000000000010206   Top of Stack: (sp=0x000000a75a1fab98) 0x000000a75a1fab98: 00007ff9dec82e7c 00007ff9e24c6020 0x000000a75a1faba8: 00000264f1f27018 000000000000004a 0x000000a75a1fabb8: 00007ff9e23d2d40 000000a75a1faff0 0x000000a75a1fabc8: 00007ff9dec3f484 00007ff9e24c33b0 0x000000a75a1fabd8: 00007ff9e23d2d40 00002e776176616a 0x000000a75a1fabe8: 0000ed5448f3c4d4 000000a75a1faff0 0x000000a75a1fabf8: 00007ff9dec40457 00007ff9e24c33b8 0x000000a75a1fac08: 000000000000004a 00007ff9e24c33b8 0x000000a75a1fac18: 00000264f1a6f0dc 00007ff9e24c33b0 0x000000a75a1fac28: 00007ffa00000000 0000000000000009 0x000000a75a1fac38: 00000264f1a6f294 00000264f1a6f3e0 0x000000a75a1fac48: 00007ff9e24c33b8 000000a75a1faff0 0x000000a75a1fac58: 000000a75a1fadf1 00007f006176616a 0x000000a75a1fac68: 00007f006176616a 46676e697274535c 0x000000a75a1fac78: 5c6f666e49656c69 3062343039303430 0x000000a75a1fac88: 726556656c69465c 000000006e6f6973   Instructions: (pc=0x00007ff9dec82b60) 0x00007ff9dec82a60: 74 09 33 c9 ff 15 e6 89 66 03 90 48 8b c3 48 83 0x00007ff9dec82a70: c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff9dec82a80: 48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ff9dec82a90: 15 bb 89 66 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ff9dec82aa0: 48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff9dec82ab0: 48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff9dec82ac0: 48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ff9dec82ad0: 48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ff9dec82ae0: 48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff9dec82af0: 48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ff9dec82b00: 4c 8d 04 d5 00 00 00 00 33 d2 e9 c1 d0 dd 01 cc 0x00007ff9dec82b10: 4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ff9dec82b20: 48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff9dec82b30: 48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff9dec82b40: 49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ff9dec82b50: 8b 81 40 39 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ff9dec82b60: 8b 81 40 39 00 00 83 c0 f0 83 f8 67 0f 87 5a 01 0x00007ff9dec82b70: 00 00 48 8d 15 87 d4 e6 ff 0f b6 84 02 f0 2c 19 0x00007ff9dec82b80: 00 8b 8c 82 d0 2c 19 00 48 03 ca ff e1 48 8b 0d 0x00007ff9dec82b90: 6c 6f 7e 03 83 b9 b4 34 00 00 02 0f 87 2b 01 00 0x00007ff9dec82ba0: 00 48 8d 91 0c 29 00 00 c7 02 e1 00 00 00 e9 ce 0x00007ff9dec82bb0: 00 00 00 48 8b 0d 46 6f 7e 03 83 b9 b4 34 00 00 0x00007ff9dec82bc0: 02 0f 87 05 01 00 00 48 8d 91 0c 29 00 00 c7 02 0x00007ff9dec82bd0: f0 00 00 00 e9 a8 00 00 00 48 8b 0d 20 6f 7e 03 0x00007ff9dec82be0: 83 b9 b4 34 00 00 02 0f 87 df 00 00 00 48 8d 91 0x00007ff9dec82bf0: 0c 29 00 00 c7 02 00 04 00 00 e9 82 00 00 00 48 0x00007ff9dec82c00: 8b 0d fa 6e 7e 03 83 b9 b4 34 00 00 02 0f 87 b9 0x00007ff9dec82c10: 00 00 00 48 8d 91 0c 29 00 00 c7 02 00 08 00 00 0x00007ff9dec82c20: eb 5f 48 8b 0d d7 6e 7e 03 83 b9 b4 34 00 00 02 0x00007ff9dec82c30: 0f 87 96 00 00 00 48 8d 91 0c 29 00 00 c7 02 00 0x00007ff9dec82c40: 09 00 00 eb 3c 48 8b 0d b4 6e 7e 03 83 b9 b4 34 0x00007ff9dec82c50: 00 00 02 77 77 48 8d 91 0c 29 00 00 c7 02 3c 0f   Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ff9dec82e7c atio6axx.dll stack at sp + 1 slots: 0x00007ff9e24c6020 atio6axx.dll stack at sp + 2 slots: 0x00000264f1f27018 points into unknown readable memory: 0x00007ff9e1ccf5f0 | f0 f5 cc e1 f9 7f 00 00 stack at sp + 3 slots: 0x000000000000004a is an unknown value stack at sp + 4 slots: 0x00007ff9e23d2d40 atio6axx.dll stack at sp + 5 slots: 0x000000a75a1faff0 is pointing into the stack for thread: 0x00000264b7b53600 stack at sp + 6 slots: 0x00007ff9dec3f484 atio6axx.dll stack at sp + 7 slots: 0x00007ff9e24c33b0 atio6axx.dll   --------------- P R O C E S S ---------------   Threads class SMR info: _java_thread_list=0x00000264f26d5900, length=30, elements={ 0x00000264b7b53600, 0x00000264e6ac6bd0, 0x00000264e6ac16e0, 0x00000264e6aea540, 0x00000264e6aebe20, 0x00000264e6b27de0, 0x00000264e6b2b070, 0x00000264e6b2d1c0, 0x00000264e6b335f0, 0x00000264e6b344c0, 0x00000264e6c3d250, 0x00000264e6e4e300, 0x00000264ebbf3060, 0x00000264ebbf58e0, 0x00000264ebbf44a0, 0x00000264f141e5e0, 0x00000264f141bd60, 0x00000264f1421880, 0x00000264f141fa20, 0x00000264f141d1a0, 0x00000264f1420950, 0x00000264f141ff30, 0x00000264f1421d90, 0x00000264f141f000, 0x00000264f141f510, 0x00000264f14231d0, 0x00000264ef6d5210, 0x00000264ef6d1f70, 0x00000264ee92bc70, 0x00000264edf16be0 }   Java Threads: ( => current thread ) =>0x00000264b7b53600 JavaThread "Render thread" [_thread_in_native, id=10168, stack(0x000000a75a100000,0x000000a75a200000)] 0x00000264e6ac6bd0 JavaThread "Reference Handler" daemon [_thread_blocked, id=12556, stack(0x000000a75a800000,0x000000a75a900000)] 0x00000264e6ac16e0 JavaThread "Finalizer" daemon [_thread_blocked, id=14332, stack(0x000000a75a900000,0x000000a75aa00000)] 0x00000264e6aea540 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6280, stack(0x000000a75aa00000,0x000000a75ab00000)] 0x00000264e6aebe20 JavaThread "Attach Listener" daemon [_thread_blocked, id=14152, stack(0x000000a75ab00000,0x000000a75ac00000)] 0x00000264e6b27de0 JavaThread "Service Thread" daemon [_thread_blocked, id=4092, stack(0x000000a75ac00000,0x000000a75ad00000)] 0x00000264e6b2b070 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=15468, stack(0x000000a75ad00000,0x000000a75ae00000)] 0x00000264e6b2d1c0 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=12084, stack(0x000000a75ae00000,0x000000a75af00000)] 0x00000264e6b335f0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=13452, stack(0x000000a75af00000,0x000000a75b000000)] 0x00000264e6b344c0 JavaThread "Sweeper thread" daemon [_thread_blocked, id=1568, stack(0x000000a75b000000,0x000000a75b100000)] 0x00000264e6c3d250 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=8968, stack(0x000000a75b100000,0x000000a75b200000)] 0x00000264e6e4e300 JavaThread "Notification Thread" daemon [_thread_blocked, id=10364, stack(0x000000a75b300000,0x000000a75b400000)] 0x00000264ebbf3060 JavaThread "Thread-0" daemon [_thread_blocked, id=14768, stack(0x000000a75ba00000,0x000000a75bb00000)] 0x00000264ebbf58e0 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=772, stack(0x000000a75be00000,0x000000a75bf00000)] 0x00000264ebbf44a0 JavaThread "pool-2-thread-1" daemon [_thread_blocked, id=2968, stack(0x000000a75c000000,0x000000a75c100000)] 0x00000264f141e5e0 JavaThread "Thread-1" daemon [_thread_in_native, id=14960, stack(0x000000a75c100000,0x000000a75c200000)] 0x00000264f141bd60 JavaThread "Thread-2" daemon [_thread_in_native, id=4452, stack(0x000000a75c200000,0x000000a75c300000)] 0x00000264f1421880 JavaThread "Thread-3" daemon [_thread_in_native, id=12508, stack(0x000000a75c300000,0x000000a75c400000)] 0x00000264f141fa20 JavaThread "Thread-4" daemon [_thread_in_native, id=12140, stack(0x000000a75c400000,0x000000a75c500000)] 0x00000264f141d1a0 JavaThread "Thread-5" daemon [_thread_in_native, id=14496, stack(0x000000a75c500000,0x000000a75c600000)] 0x00000264f1420950 JavaThread "Thread-6" daemon [_thread_in_native, id=2972, stack(0x000000a75c600000,0x000000a75c700000)] 0x00000264f141ff30 JavaThread "Thread-7" daemon [_thread_in_native, id=12380, stack(0x000000a75c700000,0x000000a75c800000)] 0x00000264f1421d90 JavaThread "Thread-8" daemon [_thread_in_native, id=8800, stack(0x000000a75c800000,0x000000a75c900000)] 0x00000264f141f000 JavaThread "Thread-9" daemon [_thread_in_native, id=9636, stack(0x000000a75c900000,0x000000a75ca00000)] 0x00000264f141f510 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=15560, stack(0x000000a75ca00000,0x000000a75cb00000)] 0x00000264f14231d0 JavaThread "pool-3-thread-1" [_thread_blocked, id=13700, stack(0x000000a75cc00000,0x000000a75cd00000)] 0x00000264ef6d5210 JavaThread "Timer hack thread" daemon [_thread_blocked, id=2696, stack(0x000000a75d300000,0x000000a75d400000)] 0x00000264ef6d1f70 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=12180, stack(0x000000a75b200000,0x000000a75b300000)] 0x00000264ee92bc70 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=6900, stack(0x000000a75bf00000,0x000000a75c000000)] 0x00000264edf16be0 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=8880, stack(0x000000a75d600000,0x000000a75d700000)]   Other Threads: 0x00000264e6aaed70 VMThread "VM Thread" [stack: 0x000000a75a700000,0x000000a75a800000] [id=1648] 0x00000264e3fe7410 WatcherThread [stack: 0x000000a75b400000,0x000000a75b500000] [id=10816] 0x00000264e3fd3cf0 GCTaskThread "GC Thread#0" [stack: 0x000000a75a200000,0x000000a75a300000] [id=14552] 0x00000264eb368510 GCTaskThread "GC Thread#1" [stack: 0x000000a75b500000,0x000000a75b600000] [id=3872] 0x00000264eb05a010 GCTaskThread "GC Thread#2" [stack: 0x000000a75b600000,0x000000a75b700000] [id=11372] 0x00000264eb18c210 GCTaskThread "GC Thread#3" [stack: 0x000000a75b700000,0x000000a75b800000] [id=15616] 0x00000264eb18c4d0 GCTaskThread "GC Thread#4" [stack: 0x000000a75b800000,0x000000a75b900000] [id=11624] 0x00000264eb14ba60 GCTaskThread "GC Thread#5" [stack: 0x000000a75b900000,0x000000a75ba00000] [id=16076] 0x00000264ee14eec0 GCTaskThread "GC Thread#6" [stack: 0x000000a75bb00000,0x000000a75bc00000] [id=11644] 0x00000264ee150780 GCTaskThread "GC Thread#7" [stack: 0x000000a75bc00000,0x000000a75bd00000] [id=13660] 0x00000264b7bfe9b0 ConcurrentGCThread "G1 Main Marker" [stack: 0x000000a75a300000,0x000000a75a400000] [id=12000] 0x00000264e3fdfa00 ConcurrentGCThread "G1 Conc#0" [stack: 0x000000a75a400000,0x000000a75a500000] [id=1776] 0x00000264ee14f440 ConcurrentGCThread "G1 Conc#1" [stack: 0x000000a75bd00000,0x000000a75be00000] [id=13056] 0x00000264e408b020 ConcurrentGCThread "G1 Refine#0" [stack: 0x000000a75a500000,0x000000a75a600000] [id=3756] 0x00000264f1ba1f70 ConcurrentGCThread "G1 Refine#1" [stack: 0x000000a75cb00000,0x000000a75cc00000] [id=11292] 0x00000264f1ba2840 ConcurrentGCThread "G1 Refine#2" [stack: 0x000000a75d200000,0x000000a75d300000] [id=14900] 0x00000264f1ba2b30 ConcurrentGCThread "G1 Refine#3" [stack: 0x000000a75cd00000,0x000000a75ce00000] [id=6208] 0x00000264f1ba4890 ConcurrentGCThread "G1 Refine#4" [stack: 0x000000a75d400000,0x000000a75d500000] [id=16148] 0x00000264f1ba2e20 ConcurrentGCThread "G1 Refine#5" [stack: 0x000000a75d500000,0x000000a75d600000] [id=4792] 0x00000264e408b860 ConcurrentGCThread "G1 Service" [stack: 0x000000a75a600000,0x000000a75a700000] [id=11860]   Threads with active compile tasks:   VM state: not at safepoint (normal execution)   VM Mutex/Monitor currently owned by a thread: None   Heap address: 0x000000054e000000, size: 11040 MB, Compressed Oops mode: Zero based, Oop shift amount: 3   CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000   GC Precious Log: CPUs: 8 total, 8 available Memory: 32549M Large Page Support: Disabled NUMA Support: Disabled Compressed Oops: Enabled (Zero based) Heap Region Size: 8M Heap Min Capacity: 256M Heap Initial Capacity: 256M Heap Max Capacity: 11040M Pre-touch: Disabled Parallel Workers: 8 Concurrent Workers: 2 Concurrent Refinement Workers: 8 Periodic GC: Disabled   Heap: garbage-first heap total 1376256K, used 1164140K [0x000000054e000000, 0x0000000800000000) region size 8192K, 95 young (778240K), 1 survivors (8192K) Metaspace used 97357K, committed 99584K, reserved 1179648K class space used 13467K, committed 14400K, reserved 1048576K   Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) | 0|0x000000054e000000, 0x000000054e800000, 0x000000054e800000|100%| O| |TAMS 0x000000054e800000, 0x000000054e000000| Untracked | 1|0x000000054e800000, 0x000000054f000000, 0x000000054f000000|100%| O| |TAMS 0x000000054f000000, 0x000000054e800000| Untracked | 2|0x000000054f000000, 0x000000054f800000, 0x000000054f800000|100%| O| |TAMS 0x000000054f800000, 0x000000054f000000| Untracked | 3|0x000000054f800000, 0x0000000550000000, 0x0000000550000000|100%| O| |TAMS 0x0000000550000000, 0x000000054f800000| Untracked | 4|0x0000000550000000, 0x0000000550800000, 0x0000000550800000|100%| O| |TAMS 0x0000000550800000, 0x0000000550000000| Untracked | 5|0x0000000550800000, 0x0000000551000000, 0x0000000551000000|100%| O| |TAMS 0x0000000551000000, 0x0000000550800000| Untracked | 6|0x0000000551000000, 0x0000000551800000, 0x0000000551800000|100%| O| |TAMS 0x0000000551800000, 0x0000000551000000| Untracked | 7|0x0000000551800000, 0x0000000552000000, 0x0000000552000000|100%| O| |TAMS 0x0000000552000000, 0x0000000551800000| Untracked | 8|0x0000000552000000, 0x0000000552800000, 0x0000000552800000|100%| O| |TAMS 0x0000000552800000, 0x0000000552000000| Untracked | 9|0x0000000552800000, 0x0000000553000000, 0x0000000553000000|100%| O| |TAMS 0x0000000553000000, 0x0000000552800000| Untracked | 10|0x0000000553000000, 0x0000000553800000, 0x0000000553800000|100%| O| |TAMS 0x0000000553800000, 0x0000000553000000| Untracked | 11|0x0000000553800000, 0x0000000554000000, 0x0000000554000000|100%| O| |TAMS 0x0000000554000000, 0x0000000553800000| Untracked | 12|0x0000000554000000, 0x0000000554800000, 0x0000000554800000|100%| O| |TAMS 0x0000000554000000, 0x0000000554000000| Untracked | 13|0x0000000554800000, 0x0000000554800000, 0x0000000555000000| 0%| F| |TAMS 0x0000000554800000, 0x0000000554800000| Untracked | 14|0x0000000555000000, 0x0000000555800000, 0x0000000555800000|100%| O| |TAMS 0x0000000555800000, 0x0000000555000000| Untracked | 15|0x0000000555800000, 0x0000000556000000, 0x0000000556000000|100%| O| |TAMS 0x0000000556000000, 0x0000000555800000| Untracked | 16|0x0000000556000000, 0x0000000556800000, 0x0000000556800000|100%| O| |TAMS 0x0000000556800000, 0x0000000556000000| Untracked | 17|0x0000000556800000, 0x0000000557000000, 0x0000000557000000|100%| O| |TAMS 0x0000000557000000, 0x0000000556800000| Untracked | 18|0x0000000557000000, 0x0000000557800000, 0x0000000557800000|100%| O| |TAMS 0x0000000557800000, 0x0000000557000000| Untracked | 19|0x0000000557800000, 0x0000000558000000, 0x0000000558000000|100%| O| |TAMS 0x0000000558000000, 0x0000000557800000| Untracked | 20|0x0000000558000000, 0x0000000558800000, 0x0000000558800000|100%| O| |TAMS 0x0000000558800000, 0x0000000558000000| Untracked | 21|0x0000000558800000, 0x0000000559000000, 0x0000000559000000|100%| O| |TAMS 0x0000000559000000, 0x0000000558800000| Untracked | 22|0x0000000559000000, 0x0000000559800000, 0x0000000559800000|100%| O| |TAMS 0x0000000559800000, 0x0000000559000000| Untracked | 23|0x0000000559800000, 0x000000055a000000, 0x000000055a000000|100%| O| |TAMS 0x000000055a000000, 0x0000000559800000| Untracked | 24|0x000000055a000000, 0x000000055a800000, 0x000000055a800000|100%| O| |TAMS 0x000000055a800000, 0x000000055a000000| Untracked | 25|0x000000055a800000, 0x000000055b000000, 0x000000055b000000|100%| O| |TAMS 0x000000055b000000, 0x000000055a800000| Untracked | 26|0x000000055b000000, 0x000000055b800000, 0x000000055b800000|100%| O| |TAMS 0x000000055b800000, 0x000000055b000000| Untracked | 27|0x000000055b800000, 0x000000055c000000, 0x000000055c000000|100%| O| |TAMS 0x000000055c000000, 0x000000055b800000| Untracked | 28|0x000000055c000000, 0x000000055c800000, 0x000000055c800000|100%| O| |TAMS 0x000000055c800000, 0x000000055c000000| Untracked | 29|0x000000055c800000, 0x000000055d000000, 0x000000055d000000|100%| O| |TAMS 0x000000055d000000, 0x000000055c800000| Untracked | 30|0x000000055d000000, 0x000000055d800000, 0x000000055d800000|100%| O| |TAMS 0x000000055d800000, 0x000000055d000000| Untracked | 31|0x000000055d800000, 0x000000055e000000, 0x000000055e000000|100%| O| |TAMS 0x000000055e000000, 0x000000055d800000| Untracked | 32|0x000000055e000000, 0x000000055e800000, 0x000000055e800000|100%| O| |TAMS 0x000000055e800000, 0x000000055e000000| Untracked | 33|0x000000055e800000, 0x000000055f000000, 0x000000055f000000|100%| O| |TAMS 0x000000055f000000, 0x000000055e800000| Untracked | 34|0x000000055f000000, 0x000000055f800000, 0x000000055f800000|100%| O| |TAMS 0x000000055f800000, 0x000000055f000000| Untracked | 35|0x000000055f800000, 0x0000000560000000, 0x0000000560000000|100%|HS| |TAMS 0x0000000560000000, 0x000000055f800000| Complete | 36|0x0000000560000000, 0x0000000560800000, 0x0000000560800000|100%|HC| |TAMS 0x0000000560800000, 0x0000000560000000| Complete | 37|0x0000000560800000, 0x0000000561000000, 0x0000000561000000|100%| O| |TAMS 0x0000000561000000, 0x0000000560800000| Untracked | 38|0x0000000561000000, 0x0000000561800000, 0x0000000561800000|100%| O| |TAMS 0x0000000561800000, 0x0000000561000000| Untracked | 39|0x0000000561800000, 0x0000000562000000, 0x0000000562000000|100%| O| |TAMS 0x0000000562000000, 0x0000000561800000| Untracked | 40|0x0000000562000000, 0x0000000562800000, 0x0000000562800000|100%| O| |TAMS 0x0000000562800000, 0x0000000562000000| Untracked | 41|0x0000000562800000, 0x0000000563000000, 0x0000000563000000|100%| O| |TAMS 0x0000000563000000, 0x0000000562800000| Untracked | 42|0x0000000563000000, 0x0000000563800000, 0x0000000563800000|100%| O| |TAMS 0x0000000563800000, 0x0000000563000000| Untracked | 43|0x0000000563800000, 0x0000000564000000, 0x0000000564000000|100%| O| |TAMS 0x0000000564000000, 0x0000000563800000| Untracked | 44|0x0000000564000000, 0x0000000564800000, 0x0000000564800000|100%| O| |TAMS 0x0000000564800000, 0x0000000564000000| Untracked | 45|0x0000000564800000, 0x0000000565000000, 0x0000000565000000|100%| O| |TAMS 0x0000000564c09200, 0x0000000564800000| Untracked | 46|0x0000000565000000, 0x0000000565800000, 0x0000000565800000|100%| O| |TAMS 0x0000000565000000, 0x0000000565000000| Untracked | 47|0x0000000565800000, 0x0000000566000000, 0x0000000566000000|100%| O| |TAMS 0x0000000565800000, 0x0000000565800000| Untracked | 48|0x0000000566000000, 0x000000056665a000, 0x0000000566800000| 79%| O| |TAMS 0x0000000566000000, 0x0000000566000000| Untracked | 49|0x0000000566800000, 0x0000000566800000, 0x0000000567000000| 0%| F| |TAMS 0x0000000566800000, 0x0000000566800000| Untracked | 50|0x0000000567000000, 0x0000000567000000, 0x0000000567800000| 0%| F| |TAMS 0x0000000567000000, 0x0000000567000000| Untracked | 51|0x0000000567800000, 0x0000000567800000, 0x0000000568000000| 0%| F| |TAMS 0x0000000567800000, 0x0000000567800000| Untracked | 52|0x0000000568000000, 0x0000000568000000, 0x0000000568800000| 0%| F| |TAMS 0x0000000568000000, 0x0000000568000000| Untracked | 53|0x0000000568800000, 0x0000000568800000, 0x0000000569000000| 0%| F| |TAMS 0x0000000568800000, 0x0000000568800000| Untracked | 54|0x0000000569000000, 0x0000000569000000, 0x0000000569800000| 0%| F| |TAMS 0x0000000569000000, 0x0000000569000000| Untracked | 55|0x0000000569800000, 0x0000000569800000, 0x000000056a000000| 0%| F| |TAMS 0x0000000569800000, 0x0000000569800000| Untracked | 56|0x000000056a000000, 0x000000056a000000, 0x000000056a800000| 0%| F| |TAMS 0x000000056a000000, 0x000000056a000000| Untracked | 57|0x000000056a800000, 0x000000056a800000, 0x000000056b000000| 0%| F| |TAMS 0x000000056a800000, 0x000000056a800000| Untracked | 58|0x000000056b000000, 0x000000056b000000, 0x000000056b800000| 0%| F| |TAMS 0x000000056b000000, 0x000000056b000000| Untracked | 59|0x000000056b800000, 0x000000056b800000, 0x000000056c000000| 0%| F| |TAMS 0x000000056b800000, 0x000000056b800000| Untracked | 60|0x000000056c000000, 0x000000056c000000, 0x000000056c800000| 0%| F| |TAMS 0x000000056c000000, 0x000000056c000000| Untracked | 61|0x000000056c800000, 0x000000056c800000, 0x000000056d000000| 0%| F| |TAMS 0x000000056c800000, 0x000000056c800000| Untracked | 62|0x000000056d000000, 0x000000056d000000, 0x000000056d800000| 0%| F| |TAMS 0x000000056d000000, 0x000000056d000000| Untracked | 63|0x000000056d800000, 0x000000056d800000, 0x000000056e000000| 0%| F| |TAMS 0x000000056d800000, 0x000000056d800000| Untracked | 64|0x000000056e000000, 0x000000056e000000, 0x000000056e800000| 0%| F| |TAMS 0x000000056e000000, 0x000000056e000000| Untracked | 65|0x000000056e800000, 0x000000056e800000, 0x000000056f000000| 0%| F| |TAMS 0x000000056e800000, 0x000000056e800000| Untracked | 66|0x000000056f000000, 0x000000056f000000, 0x000000056f800000| 0%| F| |TAMS 0x000000056f000000, 0x000000056f000000| Untracked | 67|0x000000056f800000, 0x000000056f800000, 0x0000000570000000| 0%| F| |TAMS 0x000000056f800000, 0x000000056f800000| Untracked | 68|0x0000000570000000, 0x0000000570000000, 0x0000000570800000| 0%| F| |TAMS 0x0000000570000000, 0x0000000570000000| Untracked | 69|0x0000000570800000, 0x0000000570800000, 0x0000000571000000| 0%| F| |TAMS 0x0000000570800000, 0x0000000570800000| Untracked | 70|0x0000000571000000, 0x0000000571000000, 0x0000000571800000| 0%| F| |TAMS 0x0000000571000000, 0x0000000571000000| Untracked | 71|0x0000000571800000, 0x0000000571800000, 0x0000000572000000| 0%| F| |TAMS 0x0000000571800000, 0x0000000571800000| Untracked | 72|0x0000000572000000, 0x00000005724a7b90, 0x0000000572800000| 58%| E| |TAMS 0x0000000572000000, 0x0000000572000000| Complete | 73|0x0000000572800000, 0x0000000573000000, 0x0000000573000000|100%| E|CS|TAMS 0x0000000572800000, 0x0000000572800000| Complete | 74|0x0000000573000000, 0x0000000573800000, 0x0000000573800000|100%| E|CS|TAMS 0x0000000573000000, 0x0000000573000000| Complete | 75|0x0000000573800000, 0x0000000574000000, 0x0000000574000000|100%| E|CS|TAMS 0x0000000573800000, 0x0000000573800000| Complete | 76|0x0000000574000000, 0x0000000574800000, 0x0000000574800000|100%| E|CS|TAMS 0x0000000574000000, 0x0000000574000000| Complete | 77|0x0000000574800000, 0x0000000575000000, 0x0000000575000000|100%| E|CS|TAMS 0x0000000574800000, 0x0000000574800000| Complete | 78|0x0000000575000000, 0x0000000575800000, 0x0000000575800000|100%| E|CS|TAMS 0x0000000575000000, 0x0000000575000000| Complete | 79|0x0000000575800000, 0x0000000576000000, 0x0000000576000000|100%| E|CS|TAMS 0x0000000575800000, 0x0000000575800000| Complete | 80|0x0000000576000000, 0x0000000576800000, 0x0000000576800000|100%| E|CS|TAMS 0x0000000576000000, 0x0000000576000000| Complete | 81|0x0000000576800000, 0x0000000577000000, 0x0000000577000000|100%| E|CS|TAMS 0x0000000576800000, 0x0000000576800000| Complete | 82|0x0000000577000000, 0x0000000577800000, 0x0000000577800000|100%| E|CS|TAMS 0x0000000577000000, 0x0000000577000000| Complete | 83|0x0000000577800000, 0x0000000578000000, 0x0000000578000000|100%| E|CS|TAMS 0x0000000577800000, 0x0000000577800000| Complete | 84|0x0000000578000000, 0x0000000578800000, 0x0000000578800000|100%| E|CS|TAMS 0x0000000578000000, 0x0000000578000000| Complete | 85|0x0000000578800000, 0x0000000579000000, 0x0000000579000000|100%| E|CS|TAMS 0x0000000578800000, 0x0000000578800000| Complete | 86|0x0000000579000000, 0x0000000579800000, 0x0000000579800000|100%| E|CS|TAMS 0x0000000579000000, 0x0000000579000000| Complete | 87|0x0000000579800000, 0x000000057a000000, 0x000000057a000000|100%| E|CS|TAMS 0x0000000579800000, 0x0000000579800000| Complete | 88|0x000000057a000000, 0x000000057a800000, 0x000000057a800000|100%| E|CS|TAMS 0x000000057a000000, 0x000000057a000000| Complete | 89|0x000000057a800000, 0x000000057b000000, 0x000000057b000000|100%| E|CS|TAMS 0x000000057a800000, 0x000000057a800000| Complete | 90|0x000000057b000000, 0x000000057b800000, 0x000000057b800000|100%| E|CS|TAMS 0x000000057b000000, 0x000000057b000000| Complete | 91|0x000000057b800000, 0x000000057c000000, 0x000000057c000000|100%| E|CS|TAMS 0x000000057b800000, 0x000000057b800000| Complete | 92|0x000000057c000000, 0x000000057c800000, 0x000000057c800000|100%| E|CS|TAMS 0x000000057c000000, 0x000000057c000000| Complete | 93|0x000000057c800000, 0x000000057d000000, 0x000000057d000000|100%| E|CS|TAMS 0x000000057c800000, 0x000000057c800000| Complete | 94|0x000000057d000000, 0x000000057d800000, 0x000000057d800000|100%| E|CS|TAMS 0x000000057d000000, 0x000000057d000000| Complete | 95|0x000000057d800000, 0x000000057e000000, 0x000000057e000000|100%| E|CS|TAMS 0x000000057d800000, 0x000000057d800000| Complete | 96|0x000000057e000000, 0x000000057e800000, 0x000000057e800000|100%| E|CS|TAMS 0x000000057e000000, 0x000000057e000000| Complete | 97|0x000000057e800000, 0x000000057f000000, 0x000000057f000000|100%| E|CS|TAMS 0x000000057e800000, 0x000000057e800000| Complete | 98|0x000000057f000000, 0x000000057f800000, 0x000000057f800000|100%| E|CS|TAMS 0x000000057f000000, 0x000000057f000000| Complete | 99|0x000000057f800000, 0x0000000580000000, 0x0000000580000000|100%| E|CS|TAMS 0x000000057f800000, 0x000000057f800000| Complete | 100|0x0000000580000000, 0x0000000580800000, 0x0000000580800000|100%| E|CS|TAMS 0x0000000580000000, 0x0000000580000000| Complete | 101|0x0000000580800000, 0x0000000581000000, 0x0000000581000000|100%| E|CS|TAMS 0x0000000580800000, 0x0000000580800000| Complete | 102|0x0000000581000000, 0x0000000581800000, 0x0000000581800000|100%| E|CS|TAMS 0x0000000581000000, 0x0000000581000000| Complete | 103|0x0000000581800000, 0x0000000582000000, 0x0000000582000000|100%| E|CS|TAMS 0x0000000581800000, 0x0000000581800000| Complete | 104|0x0000000582000000, 0x0000000582800000, 0x0000000582800000|100%| E|CS|TAMS 0x0000000582000000, 0x0000000582000000| Complete | 105|0x0000000582800000, 0x0000000583000000, 0x0000000583000000|100%| E|CS|TAMS 0x0000000582800000, 0x0000000582800000| Complete | 106|0x0000000583000000, 0x0000000583800000, 0x0000000583800000|100%| E|CS|TAMS 0x0000000583000000, 0x0000000583000000| Complete | 107|0x0000000583800000, 0x0000000584000000, 0x0000000584000000|100%| E|CS|TAMS 0x0000000583800000, 0x0000000583800000| Complete | 108|0x0000000584000000, 0x0000000584800000, 0x0000000584800000|100%| E|CS|TAMS 0x0000000584000000, 0x0000000584000000| Complete | 109|0x0000000584800000, 0x0000000585000000, 0x0000000585000000|100%| E|CS|TAMS 0x0000000584800000, 0x0000000584800000| Complete | 110|0x0000000585000000, 0x0000000585800000, 0x0000000585800000|100%| E|CS|TAMS 0x0000000585000000, 0x0000000585000000| Complete | 111|0x0000000585800000, 0x0000000586000000, 0x0000000586000000|100%| E|CS|TAMS 0x0000000585800000, 0x0000000585800000| Complete | 112|0x0000000586000000, 0x0000000586800000, 0x0000000586800000|100%| E|CS|TAMS 0x0000000586000000, 0x0000000586000000| Complete | 113|0x0000000586800000, 0x0000000587000000, 0x0000000587000000|100%| E|CS|TAMS 0x0000000586800000, 0x0000000586800000| Complete | 114|0x0000000587000000, 0x0000000587800000, 0x0000000587800000|100%| E|CS|TAMS 0x0000000587000000, 0x0000000587000000| Complete | 115|0x0000000587800000, 0x0000000588000000, 0x0000000588000000|100%| E|CS|TAMS 0x0000000587800000, 0x0000000587800000| Complete | 116|0x0000000588000000, 0x0000000588800000, 0x0000000588800000|100%| E|CS|TAMS 0x0000000588000000, 0x0000000588000000| Complete | 117|0x0000000588800000, 0x0000000589000000, 0x0000000589000000|100%| E|CS|TAMS 0x0000000588800000, 0x0000000588800000| Complete | 118|0x0000000589000000, 0x0000000589800000, 0x0000000589800000|100%| E|CS|TAMS 0x0000000589000000, 0x0000000589000000| Complete | 119|0x0000000589800000, 0x000000058a000000, 0x000000058a000000|100%| E|CS|TAMS 0x0000000589800000, 0x0000000589800000| Complete | 120|0x000000058a000000, 0x000000058a800000, 0x000000058a800000|100%| E|CS|TAMS 0x000000058a000000, 0x000000058a000000| Complete | 121|0x000000058a800000, 0x000000058b000000, 0x000000058b000000|100%| E|CS|TAMS 0x000000058a800000, 0x000000058a800000| Complete | 122|0x000000058b000000, 0x000000058b800000, 0x000000058b800000|100%| E|CS|TAMS 0x000000058b000000, 0x000000058b000000| Complete | 123|0x000000058b800000, 0x000000058c000000, 0x000000058c000000|100%| E|CS|TAMS 0x000000058b800000, 0x000000058b800000| Complete | 124|0x000000058c000000, 0x000000058c800000, 0x000000058c800000|100%| E|CS|TAMS 0x000000058c000000, 0x000000058c000000| Complete | 125|0x000000058c800000, 0x000000058d000000, 0x000000058d000000|100%| E|CS|TAMS 0x000000058c800000, 0x000000058c800000| Complete | 126|0x000000058d000000, 0x000000058d800000, 0x000000058d800000|100%| E|CS|TAMS 0x000000058d000000, 0x000000058d000000| Complete | 127|0x000000058d800000, 0x000000058e000000, 0x000000058e000000|100%| E|CS|TAMS 0x000000058d800000, 0x000000058d800000| Complete | 128|0x000000058e000000, 0x000000058e800000, 0x000000058e800000|100%| E|CS|TAMS 0x000000058e000000, 0x000000058e000000| Complete | 129|0x000000058e800000, 0x000000058f000000, 0x000000058f000000|100%| E|CS|TAMS 0x000000058e800000, 0x000000058e800000| Complete | 130|0x000000058f000000, 0x000000058f800000, 0x000000058f800000|100%| E|CS|TAMS 0x000000058f000000, 0x000000058f000000| Complete | 131|0x000000058f800000, 0x0000000590000000, 0x0000000590000000|100%| E|CS|TAMS 0x000000058f800000, 0x000000058f800000| Complete | 132|0x0000000590000000, 0x0000000590800000, 0x0000000590800000|100%| E|CS|TAMS 0x0000000590000000, 0x0000000590000000| Complete | 133|0x0000000590800000, 0x0000000591000000, 0x0000000591000000|100%| E|CS|TAMS 0x0000000590800000, 0x0000000590800000| Complete | 134|0x0000000591000000, 0x0000000591800000, 0x0000000591800000|100%| E|CS|TAMS 0x0000000591000000, 0x0000000591000000| Complete | 135|0x0000000591800000, 0x0000000592000000, 0x0000000592000000|100%| E|CS|TAMS 0x0000000591800000, 0x0000000591800000| Complete | 136|0x0000000592000000, 0x0000000592800000, 0x0000000592800000|100%| E|CS|TAMS 0x0000000592000000, 0x0000000592000000| Complete | 137|0x0000000592800000, 0x0000000593000000, 0x0000000593000000|100%| E|CS|TAMS 0x0000000592800000, 0x0000000592800000| Complete | 138|0x0000000593000000, 0x0000000593800000, 0x0000000593800000|100%| E|CS|TAMS 0x0000000593000000, 0x0000000593000000| Complete | 139|0x0000000593800000, 0x0000000594000000, 0x0000000594000000|100%| E|CS|TAMS 0x0000000593800000, 0x0000000593800000| Complete | 140|0x0000000594000000, 0x0000000594800000, 0x0000000594800000|100%| E|CS|TAMS 0x0000000594000000, 0x0000000594000000| Complete | 141|0x0000000594800000, 0x0000000595000000, 0x0000000595000000|100%| E|CS|TAMS 0x0000000594800000, 0x0000000594800000| Complete | 142|0x0000000595000000, 0x0000000595800000, 0x0000000595800000|100%| E|CS|TAMS 0x0000000595000000, 0x0000000595000000| Complete | 143|0x0000000595800000, 0x0000000596000000, 0x0000000596000000|100%| E|CS|TAMS 0x0000000595800000, 0x0000000595800000| Complete | 144|0x0000000596000000, 0x0000000596800000, 0x0000000596800000|100%| E|CS|TAMS 0x0000000596000000, 0x0000000596000000| Complete | 145|0x0000000596800000, 0x0000000597000000, 0x0000000597000000|100%| E|CS|TAMS 0x0000000596800000, 0x0000000596800000| Complete | 146|0x0000000597000000, 0x0000000597800000, 0x0000000597800000|100%| E|CS|TAMS 0x0000000597000000, 0x0000000597000000| Complete | 147|0x0000000597800000, 0x0000000598000000, 0x0000000598000000|100%| E|CS|TAMS 0x0000000597800000, 0x0000000597800000| Complete | 148|0x0000000598000000, 0x0000000598800000, 0x0000000598800000|100%| E|CS|TAMS 0x0000000598000000, 0x0000000598000000| Complete | 149|0x0000000598800000, 0x0000000599000000, 0x0000000599000000|100%| E|CS|TAMS 0x0000000598800000, 0x0000000598800000| Complete | 150|0x0000000599000000, 0x0000000599800000, 0x0000000599800000|100%| E|CS|TAMS 0x0000000599000000, 0x0000000599000000| Complete | 151|0x0000000599800000, 0x000000059a000000, 0x000000059a000000|100%| E|CS|TAMS 0x0000000599800000, 0x0000000599800000| Complete | 152|0x000000059a000000, 0x000000059a800000, 0x000000059a800000|100%| E|CS|TAMS 0x000000059a000000, 0x000000059a000000| Complete | 153|0x000000059a800000, 0x000000059b000000, 0x000000059b000000|100%| E|CS|TAMS 0x000000059a800000, 0x000000059a800000| Complete | 154|0x000000059b000000, 0x000000059b800000, 0x000000059b800000|100%| E|CS|TAMS 0x000000059b000000, 0x000000059b000000| Complete | 155|0x000000059b800000, 0x000000059c000000, 0x000000059c000000|100%| E|CS|TAMS 0x000000059b800000, 0x000000059b800000| Complete | 156|0x000000059c000000, 0x000000059c800000, 0x000000059c800000|100%| E|CS|TAMS 0x000000059c000000, 0x000000059c000000| Complete | 157|0x000000059c800000, 0x000000059d000000, 0x000000059d000000|100%| E|CS|TAMS 0x000000059c800000, 0x000000059c800000| Complete | 158|0x000000059d000000, 0x000000059d800000, 0x000000059d800000|100%| E|CS|TAMS 0x000000059d000000, 0x000000059d000000| Complete | 159|0x000000059d800000, 0x000000059e000000, 0x000000059e000000|100%| E|CS|TAMS 0x000000059d800000, 0x000000059d800000| Complete | 160|0x000000059e000000, 0x000000059e800000, 0x000000059e800000|100%| E|CS|TAMS 0x000000059e000000, 0x000000059e000000| Complete | 161|0x000000059e800000, 0x000000059f000000, 0x000000059f000000|100%| E|CS|TAMS 0x000000059e800000, 0x000000059e800000| Complete | 162|0x000000059f000000, 0x000000059f281140, 0x000000059f800000| 31%| S|CS|TAMS 0x000000059f000000, 0x000000059f000000| Complete | 163|0x000000059f800000, 0x00000005a0000000, 0x00000005a0000000|100%| E|CS|TAMS 0x000000059f800000, 0x000000059f800000| Complete | 164|0x00000005a0000000, 0x00000005a0800000, 0x00000005a0800000|100%| E|CS|TAMS 0x00000005a0000000, 0x00000005a0000000| Complete | 165|0x00000005a0800000, 0x00000005a1000000, 0x00000005a1000000|100%| E|CS|TAMS 0x00000005a0800000, 0x00000005a0800000| Complete | 166|0x00000005a1000000, 0x00000005a1800000, 0x00000005a1800000|100%| E|CS|TAMS 0x00000005a1000000, 0x00000005a1000000| Complete |1379|0x00000007ff800000, 0x0000000800000000, 0x0000000800000000|100%| O| |TAMS 0x0000000800000000, 0x00000007ff800000| Untracked   Card table byte_map: [0x00000264cbbb0000,0x00000264cd140000] _byte_map_base: 0x00000264c9140000   Marking Bits (Prev, Next): (CMBitMap*) 0x00000264b7bfdcb0, (CMBitMap*) 0x00000264b7bfdcf0 Prev Bits: [0x00000264ce6d0000, 0x00000264d9350000) Next Bits: [0x00000264d9350000, 0x00000264e3fd0000)   Polling page: 0x00000264b5a20000   Metaspace:   Usage: Non-class: 81.92 MB used. Class: 13.15 MB used. Both: 95.08 MB used.   Virtual space: Non-class space: 128.00 MB reserved, 83.19 MB ( 65%) committed, 2 nodes. Class space: 1.00 GB reserved, 14.06 MB ( 1%) committed, 1 nodes. Both: 1.12 GB reserved, 97.25 MB ( 8%) committed.   Chunk freelists: Non-Class: 12.43 MB Class: 1.93 MB Both: 14.37 MB   MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 134.31 MB CDS: off MetaspaceReclaimPolicy: balanced - commit_granule_bytes: 65536. - commit_granule_words: 8192. - virtual_space_node_default_size: 8388608. - enlarge_chunks_in_place: 1. - new_chunks_are_fully_committed: 0. - uncommit_free_chunks: 1. - use_allocation_guard: 0. - handle_deallocations: 1.   Internal statistics:   num_allocs_failed_limit: 18. num_arena_births: 3080. num_arena_deaths: 0. num_vsnodes_births: 3. num_vsnodes_deaths: 0. num_space_committed: 1553. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 18. num_chunks_taken_from_freelist: 6934. num_chunk_merges: 15. num_chunk_splits: 4386. num_chunks_enlarged: 2663. num_inconsistent_stats: 0.   CodeHeap 'non-profiled nmethods': size=120000Kb used=11201Kb max_used=11201Kb free=108798Kb bounds [0x00000264c2dc0000, 0x00000264c38c0000, 0x00000264ca2f0000] CodeHeap 'profiled nmethods': size=120000Kb used=19765Kb max_used=20688Kb free=100234Kb bounds [0x00000264bb2f0000, 0x00000264bc740000, 0x00000264c2820000] CodeHeap 'non-nmethods': size=5760Kb used=2071Kb max_used=2130Kb free=3688Kb bounds [0x00000264c2820000, 0x00000264c2a90000, 0x00000264c2dc0000] total_blobs=13047 nmethods=11426 adapters=1532 compilation: enabled stopped_count=0, restarted_count=0 full_count=0   Compilation events (20 events): Event: 17.358 Thread 0x00000264ee92bc70 16391 4 java.util.regex.Pattern$BitClass::is (22 bytes) Event: 17.358 Thread 0x00000264e6b335f0 16392 ! 3 java.lang.StringLatin1::replace (291 bytes) Event: 17.358 Thread 0x00000264ee92bc70 nmethod 16391 0x00000264c3823210 code [0x00000264c3823380, 0x00000264c3823458] Event: 17.359 Thread 0x00000264e6b335f0 nmethod 16392 0x00000264bb3bdd90 code [0x00000264bb3be0a0, 0x00000264bb3bf2e8] Event: 17.359 Thread 0x00000264e6b335f0 16394 1 de.keksuccino.konkrete.config.ConfigEntry::getCategory (5 bytes) Event: 17.359 Thread 0x00000264ee92bc70 16395 4 java.nio.CharBuffer::<init> (24 bytes) Event: 17.359 Thread 0x00000264e6b335f0 nmethod 16394 0x00000264c3822f10 code [0x00000264c38230a0, 0x00000264c3823178] Event: 17.359 Thread 0x00000264e6b335f0 16393 3 java.lang.invoke.LambdaFormEditor::foldArgumentsForm (102 bytes) Event: 17.359 Thread 0x00000264e6b335f0 nmethod 16393 0x00000264bbba0690 code [0x00000264bbba0860, 0x00000264bbba0b58] Event: 17.359 Thread 0x00000264e6b335f0 16396 1 sun.nio.fs.WindowsNativeDispatcher$CompletionStatus::completionKey (5 bytes) Event: 17.359 Thread 0x00000264e6b335f0 nmethod 16396 0x00000264c3822c10 code [0x00000264c3822da0, 0x00000264c3822e78] Event: 17.360 Thread 0x00000264e6b335f0 16397 3 java.util.Objects::equals (23 bytes) Event: 17.360 Thread 0x00000264edf16be0 16398 4 java.lang.invoke.LambdaForm$MH/0x0000000800140c00::invoke (25 bytes) Event: 17.360 Thread 0x00000264e6b335f0 nmethod 16397 0x00000264bbdcef10 code [0x00000264bbdcf0c0, 0x00000264bbdcf348] Event: 17.360 Thread 0x00000264e6b335f0 16399 1 sun.nio.fs.WindowsWatchService$WindowsWatchKey::buffer (5 bytes) Event: 17.360 Thread 0x00000264e6b335f0 nmethod 16399 0x00000264c3822910 code [0x00000264c3822aa0, 0x00000264c3822b78] Event: 17.361 Thread 0x00000264ee92bc70 nmethod 16395 0x00000264c3822110 code [0x00000264c38222a0, 0x00000264c3822658] Event: 17.361 Thread 0x00000264edf16be0 nmethod 16398 0x00000264c3821d10 code [0x00000264c3821ea0, 0x00000264c3821f98] Event: 17.361 Thread 0x00000264edf16be0 16402 4 java.lang.invoke.InvokerBytecodeGenerator::getInternalName (103 bytes) Event: 17.372 Thread 0x00000264edf16be0 nmethod 16402 0x00000264c3820590 code [0x00000264c3820740, 0x00000264c3821048]   GC Heap History (20 events): Event: 10.346 GC heap before {Heap before GC invocations=36 (full 0): garbage-first heap total 1064960K, used 891256K [0x000000054e000000, 0x0000000800000000) region size 8192K, 76 young (622592K), 6 survivors (49152K) Metaspace used 46223K, committed 48064K, reserved 1114112K class space used 5264K, committed 6016K, reserved 1048576K } Event: 10.364 GC heap after {Heap after GC invocations=37 (full 0): garbage-first heap total 1064960K, used 333261K [0x000000054e000000, 0x0000000800000000) region size 8192K, 5 young (40960K), 5 survivors (40960K) Metaspace used 46223K, committed 48064K, reserved 1114112K class space used 5264K, committed 6016K, reserved 1048576K } Event: 11.201 GC heap before {Heap before GC invocations=37 (full 0): garbage-first heap total 1064960K, used 890317K [0x000000054e000000, 0x0000000800000000) region size 8192K, 71 young (581632K), 5 survivors (40960K) Metaspace used 55106K, committed 57024K, reserved 1114112K class space used 6388K, committed 7168K, reserved 1048576K } Event: 11.217 GC heap after {Heap after GC invocations=38 (full 0): garbage-first heap total 1064960K, used 357704K [0x000000054e000000, 0x0000000800000000) region size 8192K, 6 young (49152K), 6 survivors (49152K) Metaspace used 55106K, committed 57024K, reserved 1114112K class space used 6388K, committed 7168K, reserved 1048576K } Event: 11.632 GC heap before {Heap before GC invocations=38 (full 0): garbage-first heap total 1064960K, used 890184K [0x000000054e000000, 0x0000000800000000) region size 8192K, 71 young (581632K), 6 survivors (49152K) Metaspace used 57413K, committed 59328K, reserved 1114112K class space used 6606K, committed 7424K, reserved 1048576K } Event: 11.647 GC heap after {Heap after GC invocations=39 (full 0): garbage-first heap total 1064960K, used 362273K [0x000000054e000000, 0x0000000800000000) region size 8192K, 5 young (40960K), 5 survivors (40960K) Metaspace used 57413K, committed 59328K, reserved 1114112K class space used 6606K, committed 7424K, reserved 1048576K } Event: 12.048 GC heap before {Heap before GC invocations=39 (full 0): garbage-first heap total 1064960K, used 902945K [0x000000054e000000, 0x0000000800000000) region size 8192K, 71 young (581632K), 5 survivors (40960K) Metaspace used 58619K, committed 60608K, reserved 1114112K class space used 6721K, committed 7552K, reserved 1048576K } Event: 12.062 GC heap after {Heap after GC invocations=40 (full 0): garbage-first heap total 1376256K, used 366082K [0x000000054e000000, 0x0000000800000000) region size 8192K, 5 young (40960K), 5 survivors (40960K) Metaspace used 58619K, committed 60608K, reserved 1114112K class space used 6721K, committed 7552K, reserved 1048576K } Event: 12.725 GC heap before {Heap before GC invocations=40 (full 0): garbage-first heap total 1376256K, used 816642K [0x000000054e000000, 0x0000000800000000) region size 8192K, 61 young (499712K), 5 survivors (40960K) Metaspace used 62997K, committed 64960K, reserved 1114112K class space used 7298K, committed 8128K, reserved 1048576K } Event: 12.738 GC heap after {Heap after GC invocations=41 (full 0): garbage-first heap total 1376256K, used 371833K [0x000000054e000000, 0x0000000800000000) region size 8192K, 6 young (49152K), 6 survivors (49152K) Metaspace used 62997K, committed 64960K, reserved 1114112K class space used 7298K, committed 8128K, reserved 1048576K } Event: 13.815 GC heap before {Heap before GC invocations=42 (full 0): garbage-first heap total 1376256K, used 1141881K [0x000000054e000000, 0x0000000800000000) region size 8192K, 100 young (819200K), 6 survivors (49152K) Metaspace used 70973K, committed 72960K, reserved 1114112K class space used 8739K, committed 9536K, reserved 1048576K } Event: 13.833 GC heap after {Heap after GC invocations=43 (full 0): garbage-first heap total 1376256K, used 379369K [0x000000054e000000, 0x0000000800000000) region size 8192K, 7 young (57344K), 7 survivors (57344K) Metaspace used 70973K, committed 72960K, reserved 1114112K class space used 8739K, committed 9536K, reserved 1048576K } Event: 13.860 GC heap before {Heap before GC invocations=43 (full 0): garbage-first heap total 1376256K, used 387561K [0x000000054e000000, 0x0000000800000000) region size 8192K, 8 young (65536K), 7 survivors (57344K) Metaspace used 71121K, committed 73152K, reserved 1114112K class space used 8771K, committed 9600K, reserved 1048576K } Event: 13.880 GC heap after {Heap after GC invocations=44 (full 0): garbage-first heap total 1376256K, used 380896K [0x000000054e000000, 0x0000000800000000) region size 8192K, 1 young (8192K), 1 survivors (8192K) Metaspace used 71121K, committed 73152K, reserved 1114112K class space used 8771K, committed 9600K, reserved 1048576K } Event: 14.939 GC heap before {Heap before GC invocations=44 (full 0): garbage-first heap total 1376256K, used 1183712K [0x000000054e000000, 0x0000000800000000) region size 8192K, 99 young (811008K), 1 survivors (8192K) Metaspace used 79719K, committed 81728K, reserved 1179648K class space used 10572K, committed 11392K, reserved 1048576K } Event: 14.946 GC heap after {Heap after GC invocations=45 (full 0): garbage-first heap total 1376256K, used 388991K [0x000000054e000000, 0x0000000800000000) region size 8192K, 2 young (16384K), 2 survivors (16384K) Metaspace used 79719K, committed 81728K, reserved 1179648K class space used 10572K, committed 11392K, reserved 1048576K } Event: 16.303 GC heap before {Heap before GC invocations=46 (full 0): garbage-first heap total 1376256K, used 1183615K [0x000000054e000000, 0x0000000800000000) region size 8192K, 99 young (811008K), 2 survivors (16384K) Metaspace used 91500K, committed 93632K, reserved 1179648K class space used 12708K, committed 13568K, reserved 1048576K } Event: 16.315 GC heap after {Heap after GC invocations=47 (full 0): garbage-first heap total 1376256K, used 404032K [0x000000054e000000, 0x0000000800000000) region size 8192K, 4 young (32768K), 4 survivors (32768K) Metaspace used 91500K, committed 93632K, reserved 1179648K class space used 12708K, committed 13568K, reserved 1048576K } Event: 16.330 GC heap before {Heap before GC invocations=47 (full 0): garbage-first heap total 1376256K, used 436800K [0x000000054e000000, 0x0000000800000000) region size 8192K, 8 young (65536K), 4 survivors (32768K) Metaspace used 91500K, committed 93632K, reserved 1179648K class space used 12708K, committed 13568K, reserved 1048576K } Event: 16.343 GC heap after {Heap after GC invocations=48 (full 0): garbage-first heap total 1376256K, used 402284K [0x000000054e000000, 0x0000000800000000) region size 8192K, 1 young (8192K), 1 survivors (8192K) Metaspace used 91500K, committed 93632K, reserved 1179648K class space used 12708K, committed 13568K, reserved 1048576K }   Dll operation events (12 events): Event: 0.004 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\java.dll Event: 0.026 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jsvml.dll Event: 0.116 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\net.dll Event: 0.117 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\nio.dll Event: 0.122 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\zip.dll Event: 0.173 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jimage.dll Event: 0.310 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\verify.dll Event: 1.247 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management.dll Event: 1.249 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management_ext.dll Event: 10.666 Loaded shared library C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\sunmscapi.dll Event: 10.729 Loaded shared library C:\Users\VJHCREATIONS\AppData\Local\Temp\jna-506824640\jna10131807061062926319.dll Event: 16.598 Loaded shared library C:\Users\VJHCREATIONS\AppData\Local\Temp\lwjglVJHCREATIONS\3.3.1-build-7\lwjgl.dll   Deoptimization events (20 events): Event: 17.334 Thread 0x00000264b7b53600 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000264c333928c relative=0x00000000000057ac Event: 17.334 Thread 0x00000264b7b53600 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000264c333928c method=cpw.mods.jarhandling.impl.Jar.findFile(Ljava/lang/String;)Ljava/util/Optional; @ 23 c2 Event: 17.334 Thread 0x00000264b7b53600 DEOPT PACKING pc=0x00000264c333928c sp=0x000000a75a1fb230 Event: 17.334 Thread 0x00000264b7b53600 DEOPT UNPACKING pc=0x00000264c28769a3 sp=0x000000a75a1fb248 mode 2 Event: 17.334 Thread 0x00000264b7b53600 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000264c30d748c relative=0x000000000000016c Event: 17.334 Thread 0x00000264b7b53600 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000264c30d748c method=cpw.mods.niofs.union.UnionFileSystem.getPath(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; @ 2 c2 Event: 17.334 Thread 0x00000264b7b53600 DEOPT PACKING pc=0x00000264c30d748c sp=0x000000a75a1fb220 Event: 17.334 Thread 0x00000264b7b53600 DEOPT UNPACKING pc=0x00000264c28769a3 sp=0x000000a75a1fb1c8 mode 2 Event: 17.334 Thread 0x00000264b7b53600 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000264c332b0dc relative=0x0000000000000e5c Event: 17.334 Thread 0x00000264b7b53600 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000264c332b0dc method=cpw.mods.niofs.union.UnionPath.<init>(Lcpw/mods/niofs/union/UnionFileSystem;[Ljava/lang/String;)V @ 75 c2 Event: 17.334 Thread 0x00000264b7b53600 DEOPT PACKING pc=0x00000264c332b0dc sp=0x000000a75a1fb120 Event: 17.334 Thread 0x00000264b7b53600 DEOPT UNPACKING pc=0x00000264c28769a3 sp=0x000000a75a1fb120 mode 2 Event: 17.357 Thread 0x00000264b7b53600 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000264c359c64c relative=0x000000000000122c Event: 17.357 Thread 0x00000264b7b53600 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000264c359c64c method=java.lang.StringLatin1.replace([BI[BI[BI)Ljava/lang/String; @ 71 c2 Event: 17.357 Thread 0x00000264b7b53600 DEOPT PACKING pc=0x00000264c359c64c sp=0x000000a75a1fe260 Event: 17.357 Thread 0x00000264b7b53600 DEOPT UNPACKING pc=0x00000264c28769a3 sp=0x000000a75a1fe108 mode 2 Event: 17.358 Thread 0x00000264b7b53600 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00000264c35a2320 relative=0x0000000000000960 Event: 17.358 Thread 0x00000264b7b53600 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000264c35a2320 method=java.lang.StringLatin1.replace([BI[BI[BI)Ljava/lang/String; @ 71 c2 Event: 17.358 Thread 0x00000264b7b53600 DEOPT PACKING pc=0x00000264c35a2320 sp=0x000000a75a1fe190 Event: 17.358 Thread 0x00000264b7b53600 DEOPT UNPACKING pc=0x00000264c28769a3 sp=0x000000a75a1fe108 mode 2   Classes unloaded (0 events): No events   Classes redefined (0 events): No events   Internal exceptions (20 events): Event: 16.608 Thread 0x00000264b7b53600 Exception <a 'sun/nio/fs/WindowsException'{0x00000005800c1cb8}> (0x00000005800c1cb8) thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 16.619 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x00000005801d1e28}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, int)'> (0x00000005801d1e28) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 16.620 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x00000005801ea840}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int)'> (0x00000005801ea840) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 16.631 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x00000005807e0d70}: 'long java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object)'> (0x00000005807e0d70) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 16.730 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x000000057b7b9b80}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, java.lang.Object, java.lang.Object, int, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, int)'> (0x000000057b7b9b80) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.254 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x00000005749bc3e8}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, int, java.lang.Object, java.lang.Object)'> (0x00000005749bc3e8) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.259 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x0000000574a657b0}: 'int java.lang.invoke.Invokers$Holder.invokeExact_MT(java.lang.Object, java.lang.Object)'> (0x0000000574a657b0) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.261 Thread 0x00000264b7b53600 Exception <a 'sun/nio/fs/WindowsException'{0x0000000574b70f98}> (0x0000000574b70f98) thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 17.261 Thread 0x00000264b7b53600 Exception <a 'sun/nio/fs/WindowsException'{0x0000000574b71340}> (0x0000000574b71340) thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 17.264 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x0000000574bec888}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, double)'> (0x0000000574bec888) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.265 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x0000000574bf30e8}: 'double java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x0000000574bf30e8) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.275 Thread 0x00000264b7b53600 Exception <a 'sun/nio/fs/WindowsException'{0x0000000574e0ca10}> (0x0000000574e0ca10) thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 17.275 Thread 0x00000264b7b53600 Exception <a 'sun/nio/fs/WindowsException'{0x0000000574e0cd80}> (0x0000000574e0cd80) thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 17.292 Thread 0x00000264b7b53600 Exception <a 'java/lang/NullPointerException'{0x0000000574271c60}> (0x0000000574271c60) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 1350] Event: 17.292 Thread 0x00000264b7b53600 Exception <a 'sun/nio/fs/WindowsException'{0x0000000574272320}> (0x0000000574272320) thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 17.312 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x00000005732c5ff0}: 'double java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x00000005732c5ff0) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.345 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x0000000572f507c8}: 'long java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object)'> (0x0000000572f507c8) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.347 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x0000000572f9beb8}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, long)'> (0x0000000572f9beb8) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.361 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x0000000572169db8}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object, int, long)'> (0x0000000572169db8) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 17.361 Thread 0x00000264b7b53600 Exception <a 'java/lang/NoSuchMethodError'{0x000000057216fd20}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, int, long)'> (0x000000057216fd20) thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759]   VM Operations (20 events): Event: 15.972 Executing VM operation: HandshakeAllThreads Event: 15.972 Executing VM operation: HandshakeAllThreads done Event: 16.162 Executing VM operation: HandshakeAllThreads Event: 16.162 Executing VM operation: HandshakeAllThreads done Event: 16.303 Executing VM operation: G1CollectForAllocation Event: 16.315 Executing VM operation: G1CollectForAllocation done Event: 16.330 Executing VM operation: G1CollectForAllocation Event: 16.343 Executing VM operation: G1CollectForAllocation done Event: 17.129 Executing VM operation: HandshakeAllThreads Event: 17.129 Executing VM operation: HandshakeAllThreads done Event: 17.132 Executing VM operation: HandshakeAllThreads Event: 17.132 Executing VM operation: HandshakeAllThreads done Event: 17.134 Executing VM operation: HandshakeAllThreads Event: 17.134 Executing VM operation: HandshakeAllThreads done Event: 17.315 Executing VM operation: HandshakeAllThreads Event: 17.315 Executing VM operation: HandshakeAllThreads done Event: 17.319 Executing VM operation: HandshakeAllThreads Event: 17.319 Executing VM operation: HandshakeAllThreads done Event: 17.332 Executing VM operation: ICBufferFull Event: 17.332 Executing VM operation: ICBufferFull done   Events (20 events): Event: 17.129 loading class sun/net/www/http/KeepAliveStream done Event: 17.129 loading class sun/net/www/http/KeepAliveStreamCleaner Event: 17.130 loading class sun/net/www/http/KeepAliveStreamCleaner done Event: 17.132 loading class sun/net/www/http/KeepAliveStreamCleaner$1 Event: 17.132 loading class sun/net/www/http/KeepAliveStreamCleaner$1 done Event: 17.132 loading class sun/net/www/http/KeepAliveStreamCleaner$2 Event: 17.132 loading class sun/net/www/http/KeepAliveStreamCleaner$2 done Event: 17.133 loading class java/util/Collections$UnmodifiableSortedMap Event: 17.133 loading class java/util/Collections$UnmodifiableSortedMap done Event: 17.134 Thread 0x00000264ef6d1f70 Thread added: 0x00000264ef6d1f70 Event: 17.136 loading class jdk/internal/vm/annotation/ForceInline Event: 17.136 loading class jdk/internal/vm/annotation/ForceInline done Event: 17.207 Thread 0x00000264ee92bc70 Thread added: 0x00000264ee92bc70 Event: 17.207 Thread 0x00000264edf16be0 Thread added: 0x00000264edf16be0 Event: 17.264 loading class java/util/function/DoubleFunction Event: 17.264 loading class java/util/function/DoubleFunction done Event: 17.318 loading class java/util/EnumMap$Values Event: 17.318 loading class java/util/EnumMap$Values done Event: 17.318 loading class java/util/EnumMap$ValueIterator Event: 17.318 loading class java/util/EnumMap$ValueIterator done   Dynamic libraries: 0x00007ff690470000 - 0x00007ff69047e000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\javaw.exe 0x00007ffa56790000 - 0x00007ffa56988000 C:\Windows\SYSTEM32\ntdll.dll 0x00007ffa54a50000 - 0x00007ffa54b0d000 C:\Windows\System32\KERNEL32.DLL 0x00007ffa54260000 - 0x00007ffa54556000 C:\Windows\System32\KERNELBASE.dll 0x00007ffa54560000 - 0x00007ffa54660000 C:\Windows\System32\ucrtbase.dll 0x00007ffa422b0000 - 0x00007ffa422c7000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jli.dll 0x00007ffa42290000 - 0x00007ffa422ab000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\VCRUNTIME140.dll 0x00007ffa56500000 - 0x00007ffa5669e000 C:\Windows\System32\USER32.dll 0x00007ffa540d0000 - 0x00007ffa540f2000 C:\Windows\System32\win32u.dll 0x00007ffa56400000 - 0x00007ffa5642c000 C:\Windows\System32\GDI32.dll 0x00007ffa35070000 - 0x00007ffa3530a000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll 0x00007ffa53f00000 - 0x00007ffa5401a000 C:\Windows\System32\gdi32full.dll 0x00007ffa55b20000 - 0x00007ffa55bbe000 C:\Windows\System32\msvcrt.dll 0x00007ffa54750000 - 0x00007ffa547ed000 C:\Windows\System32\msvcp_win.dll 0x00007ffa55c40000 - 0x00007ffa55c70000 C:\Windows\System32\IMM32.DLL 0x00007ffa4d140000 - 0x00007ffa4d14c000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\vcruntime140_1.dll 0x00007ffa39070000 - 0x00007ffa390fd000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\msvcp140.dll 0x00007ffa149b0000 - 0x00007ffa15615000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\server\jvm.dll 0x00007ffa54860000 - 0x00007ffa5490e000 C:\Windows\System32\ADVAPI32.dll 0x00007ffa56360000 - 0x00007ffa563fc000 C:\Windows\System32\sechost.dll 0x00007ffa55080000 - 0x00007ffa551a6000 C:\Windows\System32\RPCRT4.dll 0x00007ffa53420000 - 0x00007ffa5346b000 C:\Windows\SYSTEM32\POWRPROF.dll 0x00007ffa42280000 - 0x00007ffa42289000 C:\Windows\SYSTEM32\WSOCK32.dll 0x00007ffa4bb80000 - 0x00007ffa4bb8a000 C:\Windows\SYSTEM32\VERSION.dll 0x00007ffa44560000 - 0x00007ffa44587000 C:\Windows\SYSTEM32\WINMM.dll 0x00007ffa55cd0000 - 0x00007ffa55d3b000 C:\Windows\System32\WS2_32.dll 0x00007ffa53290000 - 0x00007ffa532a2000 C:\Windows\SYSTEM32\UMPDC.dll 0x00007ffa52930000 - 0x00007ffa52942000 C:\Windows\SYSTEM32\kernel.appcore.dll 0x00007ffa42270000 - 0x00007ffa4227a000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jimage.dll 0x00007ffa52220000 - 0x00007ffa52404000 C:\Windows\SYSTEM32\DBGHELP.DLL 0x00007ffa3d840000 - 0x00007ffa3d874000 C:\Windows\SYSTEM32\dbgcore.DLL 0x00007ffa53e70000 - 0x00007ffa53ef2000 C:\Windows\System32\bcryptPrimitives.dll 0x00007ffa40850000 - 0x00007ffa40875000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\java.dll 0x00007ffa41180000 - 0x00007ffa41198000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\zip.dll 0x00007ffa2c570000 - 0x00007ffa2c647000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jsvml.dll 0x00007ffa551c0000 - 0x00007ffa55905000 C:\Windows\System32\SHELL32.dll 0x00007ffa51110000 - 0x00007ffa518ab000 C:\Windows\SYSTEM32\windows.storage.dll 0x00007ffa54b10000 - 0x00007ffa54e64000 C:\Windows\System32\combase.dll 0x00007ffa538b0000 - 0x00007ffa538de000 C:\Windows\SYSTEM32\Wldp.dll 0x00007ffa566a0000 - 0x00007ffa5674d000 C:\Windows\System32\SHCORE.dll 0x00007ffa55020000 - 0x00007ffa55075000 C:\Windows\System32\shlwapi.dll 0x00007ffa53da0000 - 0x00007ffa53dc5000 C:\Windows\SYSTEM32\profapi.dll 0x00007ffa40830000 - 0x00007ffa40849000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\net.dll 0x00007ffa4c6b0000 - 0x00007ffa4c7ba000 C:\Windows\SYSTEM32\WINHTTP.dll 0x00007ffa53610000 - 0x00007ffa5367a000 C:\Windows\system32\mswsock.dll 0x00007ffa393a0000 - 0x00007ffa393b6000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\nio.dll 0x00007ffa42260000 - 0x00007ffa42270000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\verify.dll 0x00007ffa42190000 - 0x00007ffa42199000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management.dll 0x00007ffa411e0000 - 0x00007ffa411eb000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management_ext.dll 0x00007ffa551b0000 - 0x00007ffa551b8000 C:\Windows\System32\PSAPI.DLL 0x00007ffa325d0000 - 0x00007ffa325e7000 C:\Windows\system32\napinsp.dll 0x00007ffa2c490000 - 0x00007ffa2c4ab000 C:\Windows\system32\pnrpnsp.dll 0x00007ffa4ed70000 - 0x00007ffa4ed85000 C:\Windows\system32\wshbth.dll 0x00007ffa4d0a0000 - 0x00007ffa4d0bd000 C:\Windows\system32\NLAapi.dll 0x00007ffa532b0000 - 0x00007ffa532eb000 C:\Windows\SYSTEM32\IPHLPAPI.DLL 0x00007ffa53350000 - 0x00007ffa5341a000 C:\Windows\SYSTEM32\DNSAPI.dll 0x00007ffa547f0000 - 0x00007ffa547f8000 C:\Windows\System32\NSI.dll 0x00007ff9f8d40000 - 0x00007ff9f8d52000 C:\Windows\System32\winrnr.dll 0x00007ffa484f0000 - 0x00007ffa484fa000 C:\Windows\System32\rasadhlp.dll 0x00007ffa485f0000 - 0x00007ffa48672000 C:\Windows\System32\fwpuclnt.dll 0x00007ffa546b0000 - 0x00007ffa546d7000 C:\Windows\System32\bcrypt.dll 0x00007ffa53800000 - 0x00007ffa53818000 C:\Windows\SYSTEM32\CRYPTSP.dll 0x00007ffa52eb0000 - 0x00007ffa52ee4000 C:\Windows\system32\rsaenh.dll 0x00007ffa53d60000 - 0x00007ffa53d8e000 C:\Windows\SYSTEM32\USERENV.dll 0x00007ffa53820000 - 0x00007ffa5382c000 C:\Windows\SYSTEM32\CRYPTBASE.dll 0x00007ffa4c940000 - 0x00007ffa4c957000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL 0x00007ffa4cbe0000 - 0x00007ffa4cbfd000 C:\Windows\SYSTEM32\dhcpcsvc.DLL 0x00007ffa39390000 - 0x00007ffa3939e000 C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\sunmscapi.dll 0x00007ffa54100000 - 0x00007ffa5425e000 C:\Windows\System32\CRYPT32.dll 0x00007ffa53920000 - 0x00007ffa53948000 C:\Windows\SYSTEM32\ncrypt.dll 0x00007ffa538e0000 - 0x00007ffa5391b000 C:\Windows\SYSTEM32\NTASN1.dll 0x00007ffa39020000 - 0x00007ffa39065000 C:\Users\VJHCREATIONS\AppData\Local\Temp\jna-506824640\jna10131807061062926319.dll 0x00007ffa559f0000 - 0x00007ffa55b1a000 C:\Windows\System32\Ole32.dll 0x00007ffa549a0000 - 0x00007ffa54a49000 C:\Windows\System32\clbcatq.dll 0x00007ffa56430000 - 0x00007ffa564fd000 C:\Windows\System32\OleAut32.dll 0x00007ffa3e250000 - 0x00007ffa3e26f000 C:\Windows\SYSTEM32\amsi.dll 0x00007ffa3def0000 - 0x00007ffa3df6c000 C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.23090.2008-0\MpOav.dll 0x00007ffa2efc0000 - 0x00007ffa2f009000 C:\Windows\SYSTEM32\Pdh.dll 0x00007ffa39380000 - 0x00007ffa3938f000 C:\Windows\System32\perfos.dll 0x00007ffa36220000 - 0x00007ffa36295000 C:\Users\VJHCREATIONS\AppData\Local\Temp\lwjglVJHCREATIONS\3.3.1-build-7\lwjgl.dll 0x00007ffa1c340000 - 0x00007ffa1c599000 C:\Users\VJHCRE~1\AppData\Local\Temp\lwjglVJHCREATIONS\3.3.1-build-7\jemalloc.dll 0x00007ffa2c500000 - 0x00007ffa2c561000 C:\Users\VJHCRE~1\AppData\Local\Temp\lwjglVJHCREATIONS\3.3.1-build-7\glfw.dll 0x00007ffa2d420000 - 0x00007ffa2d465000 C:\Windows\SYSTEM32\dinput8.dll 0x00007ffa39000000 - 0x00007ffa39011000 C:\Windows\SYSTEM32\xinput1_4.dll 0x00007ffa54660000 - 0x00007ffa546ae000 C:\Windows\System32\cfgmgr32.dll 0x00007ffa53c00000 - 0x00007ffa53c33000 C:\Windows\SYSTEM32\DEVOBJ.dll 0x00007ffa4b6e0000 - 0x00007ffa4b832000 C:\Windows\SYSTEM32\inputhost.dll 0x00007ffa4e5e0000 - 0x00007ffa4e735000 C:\Windows\SYSTEM32\wintypes.dll 0x00007ffa4f810000 - 0x00007ffa4fb6e000 C:\Windows\SYSTEM32\CoreUIComponents.dll 0x00007ffa4fb70000 - 0x00007ffa4fc62000 C:\Windows\SYSTEM32\CoreMessaging.dll 0x00007ffa4ec20000 - 0x00007ffa4ed16000 C:\Windows\SYSTEM32\PROPSYS.dll 0x00007ffa52ff0000 - 0x00007ffa53023000 C:\Windows\SYSTEM32\ntmarta.dll 0x00007ffa50a00000 - 0x00007ffa50a2f000 C:\Windows\SYSTEM32\dwmapi.dll 0x00007ffa50920000 - 0x00007ffa509be000 C:\Windows\system32\uxtheme.dll 0x00007ffa561e0000 - 0x00007ffa562f4000 C:\Windows\System32\MSCTF.dll 0x00007ffa24260000 - 0x00007ffa24385000 C:\Windows\SYSTEM32\opengl32.dll 0x00007ffa24ac0000 - 0x00007ffa24aec000 C:\Windows\SYSTEM32\GLU32.dll 0x00007ffa24a90000 - 0x00007ffa24abd000 C:\Windows\System32\DriverStore\FileRepository\u0390451.inf_amd64_39377efdd62734d1\B390182\atig6pxx.dll 0x00007ff9deaf0000 - 0x00007ff9e2725000 C:\Windows\System32\DriverStore\FileRepository\u0390451.inf_amd64_39377efdd62734d1\B390182\atio6axx.dll 0x00007ffa55d70000 - 0x00007ffa561de000 C:\Windows\System32\SETUPAPI.dll 0x00007ffa546e0000 - 0x00007ffa54747000 C:\Windows\System32\WINTRUST.dll 0x00007ffa53a40000 - 0x00007ffa53a52000 C:\Windows\SYSTEM32\MSASN1.dll   dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\server;C:\Users\VJHCREATIONS\AppData\Local\Temp\jna-506824640;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.23090.2008-0;C:\Users\VJHCREATIONS\AppData\Local\Temp\lwjglVJHCREATIONS\3.3.1-build-7;C:\Users\VJHCRE~1\AppData\Local\Temp\lwjglVJHCREATIONS\3.3.1-build-7;C:\Windows\System32\DriverStore\FileRepository\u0390451.inf_amd64_39377efdd62734d1\B390182   VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dos.name=Windows 10 -Dos.version=10.0 -Xss1M -Djava.library.path=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\bin\0e48f9e2af6056af7b522442c059518e5791f473 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.10.25 -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,forge-43.3.2.jar,forge-43.3.2 -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries --module-path=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/org/ow2/asm/asm/9.5/asm-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx11040m -Xms256m -Dminecraft.applet.TargetDirectory=C:\Users\VJHCREATIONS\curseforge\minecraft\Instances\Better MC [FORGE] - BMC3 -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -Dlog4j.configurationFile=C:\Users\VJHCREATIONS\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml java_command: cpw.mods.bootstraplauncher.BootstrapLauncher --username VictheGammr --version forge-43.3.2 --gameDir C:\Users\VJHCREATIONS\curseforge\minecraft\Instances\Better MC [FORGE] - BMC3 --assetsDir C:\Users\VJHCREATIONS\curseforge\minecraft\Install\assets --assetIndex 1.19 --uuid f52be391d19441d4b3dfedc6c3bd6bd9 -hbFX1YxSkep5l4SaFGh3sd0 --clientId M2FiOTEyM2EtMWIxYy00NTdjLWExYmEtMTQxNDNkNjdjZDdj --xuid 2535424482556844 --userType msa --versionType release --width 1024 --height 768 --launchTarget forgeclient --fml.forgeVersion 43.3.2 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 java_class_path (initial): C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\cpw\mods\securejarhandler\2.1.4\securejarhandler-2.1.4.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.5\asm-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.5\asm-commons-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.5\asm-tree-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.5\asm-util-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.5\asm-analysis-9.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.0.4\accesstransformers-8.0.4.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\antlr\antlr4-runtime\4.9.1\antlr4-runtime-4.9.1.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.0.3\eventbus-6.0.3.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\6.0.0\forgespi-6.0.0.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.0.1\coremods-5.0.1.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\cpw\mods\modlauncher\10.0.8\modlauncher-10.0.8.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.2.0\unsafe-0.2.0.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.6.4\core-3.6.4.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.6.4\toml-3.6.4.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.5\maven-artifact-3.8.5.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.8.3\typetools-0.8.3.jar;C:\Users\VJHCREATIONS\curseforge\minecraft\Install\l Launcher Type: SUN_STANDARD   [Global flags] intx CICompilerCount = 4 {product} {ergonomic} uint ConcGCThreads = 2 {product} {ergonomic} uint G1ConcRefinementThreads = 8 {product} {ergonomic} size_t G1HeapRegionSize = 8388608 {product} {ergonomic} uintx GCDrainStackTargetSize = 64 {product} {ergonomic} ccstr HeapDumpPath = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump {manageable} {command line} size_t InitialHeapSize = 268435456 {product} {command line} size_t MarkStackSize = 4194304 {product} {ergonomic} size_t MaxHeapSize = 11576279040 {product} {command line} size_t MaxNewSize = 6945767424 {product} {ergonomic} size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} size_t MinHeapSize = 268435456 {product} {command line} uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} bool SegmentedCodeCache = true {product} {ergonomic} size_t SoftMaxHeapSize = 11576279040 {manageable} {ergonomic} intx ThreadStackSize = 1024 {pd product} {command line} bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} bool UseCompressedOops = true {product lp64_product} {ergonomic} bool UseG1GC = true {product} {ergonomic} bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}   Logging: Log output configuration: #0: stdout all=warning uptime,level,tags #1: stderr all=off uptime,level,tags   Environment Variables: PATH=C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Users\VJHCREATIONS\AppData\Local\Microsoft\WindowsApps; USERNAME=VJHCREATIONS OS=Windows_NT PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 151 Stepping 5, GenuineIntel TMP=C:\Users\VJHCRE~1\AppData\Local\Temp TEMP=C:\Users\VJHCRE~1\AppData\Local\Temp   --------------- S Y S T E M ---------------   OS: Windows 10 , 64 bit Build 19041 (10.0.19041.3393) OS uptime: 0 days 1:00 hours   CPU: total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 151 stepping 5 microcode 0x2d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, clwb Processor Information for all 8 processors : Max Mhz: 3300, Current Mhz: 3300, Mhz Limit: 3300   Memory: 4k page, system-wide physical 32549M (22858M free) TotalPageFile size 37413M (AvailPageFile size 25149M) current process WorkingSet (physical memory assigned to process): 1687M, peak: 1687M current process commit charge ("private bytes"): 1758M, peak: 1759M   vm_info: OpenJDK 64-Bit Server VM (17.0.8+7-LTS) for windows-amd64 JRE (17.0.8+7-LTS), built on Jul 7 2023 17:21:55 by "MicrosoftCorporation" with MS VC++ 16.10 / 16.11 (VS2019)   END.    
    • I tried to play a mod for forge 1.20.2 and the mod didn't work, fix this please.
    • EntityRenders requires an EntityRenderProvider. This is what I have: @Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) public static class ClientModEvents { @SubscribeEvent public static void clientSetup(FMLClientSetupEvent event) { EntityRenderers.register(HOSE.get(), new HoseEntityRenderFactory()); } private static class HoseEntityRenderFactory implements EntityRendererProvider<HoseEntity> { @Override public EntityRenderer<HoseEntity> create(Context context) { return new HoseEntityRenderer<>(context); } } } Replace HoseEntity with your own entity. If you're doing multiple try doing generics (though untested).
    • First off, I know should probably be able to debug this on my own, but this is my first mod, and I couldn't figure it out for multiple days now. What I'm trying to do, is to modify the default minecart by replacing it with a slightly different version, but I'm stuck 1 step before that, that being "cloning" the minecart as a separate Entity/Item. Here you can see a GitHub gist of all relevant files: https://gist.github.com/Kipama/cd39127e8891715a3006fa990ca7ff14 If there are files missing or access isn't working as intended, please let me know! In the Gist you can find the following files: -CustomMinecartEntity.java:        This file extends AbstractMinecart and is a clone of the vanilla minecart entity. I know I should override the minecart entity directly, but as this should work rn, I didn't change it yet. -CustomMinecartRenderer.java:  Basically vanilla MinecartRenderer with a Custom slapped on it, extends MinecraftRenderer. -ModEntities.java:                         This is where the new Entity gets added to the deferred register ENTITY_TYPES. -ModernMinecarts.java:               The main mod file. Relevant part is at the bottom, where I try to use onClientSetup to register the new Entity using EntityRenderers.register(). That last part is where my problem begins. When I try to register the new entity using EntityRenderers.register(ModEntities.CUSTOM_MINECART_ENTITY.get(), CustomMinecartRenderer::new); I get a syntax Error saying the provided and required types don't match. These are the required and provided types: ModEntities.CUSTOM_MINECART_ENTITY.get(): Required: EntityType<? extends T> Provided:EntityType<CustomMinecartEntity> CustomMinecartRenderer::new: Required: EntityRendererProvider<T> Provided:<method reference   So far I looked at 2 different Git repositories implementing custom entities, but haven't been able to figure out what I'm doing wrong. Any answers, suggestions and ridicules appreciated.
    • Yes, it is. I found out how to do it. (for Forge 1.20.1) Add this to main class constructor: // ... MinecraftForge.EVENT_BUS.<PlayerInteractEvent.EntityInteract>addListener(e -> { Player playerWhoUsed = e.getEntity(); ItemStack usedItemStack = e.getItemStack(); Entity entityThatWasClicked = e.getTarget(); if (usedItemStack.getItem() instanceof YourItem item) { // your code... e.setCancelled(true); // you can remove this if you want to continue interaction } } // ...
  • Topics

×
×
  • Create New...

Important Information

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