Jump to content

Tile Entity Field Being Reset Before Writing to NBT


jkolbly

Recommended Posts

I have a tile entity that, for now, stores a set of coordinates which are set in a GUI. The coordinates are stored in an int array called coords, but the value of this array is inconsistent throughout the code.

To be honest, I'm not entirely sure what's causing this problem. I set up debug statements throughout to attempt to triangulate the cause, but I honestly have no idea. I'm new to this, so it's entirely possible that it's something dumb that I'm missing, but I've spent six hours or so trying to figure it out to no avail.

Here's my code (TeleporterTE.java):

package name.kolbly.testmod.blocks;

import javax.annotation.Nullable;

import name.kolbly.testmod.TestMod;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.BlockPos;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

public class TeleporterTE extends TileEntity {
	
	private int[] coords;
	
	public void onLoad() {
		if (this.coords == null) {
			this.setCoords(this.getPos().getX(), this.getPos().getY(), this.getPos().getZ());
			TestMod.logger.info("Resetting coords to tile entity coordinates, value: {}", this.coords);
		}
	}

	@Override
	public NBTTagCompound writeToNBT(NBTTagCompound compound) {
		super.writeToNBT(compound);
		TestMod.logger.info("Before writing to NBT, value: {}", this.coords);
		compound.setIntArray("coords", this.coords);
		TestMod.logger.info("Wrote to NBT, value: {}", this.coords);
		return compound;
	}
	
	@Override
	public void readFromNBT(NBTTagCompound compound) {
		super.readFromNBT(compound);
		
		int[] tmp_coords = compound.getIntArray("coords");
		
		TestMod.logger.info("Before reading from NBT, value: {}", this.coords);
		
		TestMod.logger.info("Read temporary from NBT, value: {}", tmp_coords);
		
		if (tmp_coords.length == 3) {
			this.coords = tmp_coords;
			TestMod.logger.info("Temporary meets requirements for replacing coords.");
		}
		
		TestMod.logger.info("Read from NBT, value: {}", this.coords);
	}
	
	public void setCoords(int x, int y, int z) {
		this.coords = new int[] {x, y, z};
		markDirty();
		TestMod.logger.info("Changed tile entity data, value: {}", this.coords);
	}
	
	public int getX() {
		return this.coords[0];
	}
	
	public int getY() {
		return this.coords[1];
	}
	
	public int getZ() {
		return this.coords[2];
	}
	
	public int[] getCoords() {
		return this.coords;
	}
}

 

When I run this mod, my debug statements print the following:

[19:10:15] [Server thread/INFO] [testmod]: Before reading from NBT, value: null
[19:10:15] [Server thread/INFO] [testmod]: Read temporary from NBT, value: [569, 80, -230]
[19:10:15] [Server thread/INFO] [testmod]: Temporary meets requirements for replacing coords.
[19:10:15] [Server thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:10:15] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:10:15] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Resetting coords to tile entity coordinates, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Before reading from NBT, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Read temporary from NBT, value: []
[19:10:15] [Client thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:10:16] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:10:16] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:14] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:14] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]

 

Then I close the world and reopen it:

[19:11:34] [Server thread/INFO] [testmod]: Before reading from NBT, value: null
[19:11:34] [Server thread/INFO] [testmod]: Read temporary from NBT, value: [569, 80, -230]
[19:11:34] [Server thread/INFO] [testmod]: Temporary meets requirements for replacing coords.
[19:11:34] [Server thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Resetting coords to tile entity coordinates, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Before reading from NBT, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Read temporary from NBT, value: []
[19:11:34] [Client thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:38] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 90, -230]
[19:11:38] [Client thread/INFO] [testmod]: In TeleporterGUI, y-value: 90
[19:11:39] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:39] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]

 

Once again, I close and reopen the world:

[19:11:47] [Server thread/INFO] [testmod]: Before reading from NBT, value: null
[19:11:47] [Server thread/INFO] [testmod]: Read temporary from NBT, value: [569, 80, -230]
[19:11:47] [Server thread/INFO] [testmod]: Temporary meets requirements for replacing coords.
[19:11:47] [Server thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Resetting coords to tile entity coordinates, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Before reading from NBT, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Read temporary from NBT, value: []
[19:11:47] [Client thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:47] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:47] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:55] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:55] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]

 

This confuses me for a multitude of reasons.

  1. It looks like tmp_coords is sometimes null because it's being called on both the client and the server. If that's true, is there a better way to fix it than my workaround of making sure it was an array of the right length?

  2. The second time I was in the world, I tried editing the coords and it worked (the second number, the y-value, went up to 90 at 19:11:38 and was still at 90 when queried from the TeleporterGUI class at 19:11:38), but then when in writeToNBT, the coords were reset back to what they were before. What caused them to reset? I only ever edit the value in TeleporterGUI and TeleporterTE.

 

If needed, here is the full, unedited thread:

[19:09:48] [main/INFO] [GradleStart]: Extra: []
[19:09:48] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/jason/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[19:09:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[19:09:48] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[19:09:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[19:09:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[19:09:48] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2847 for Minecraft 1.12.2 loading
[19:09:48] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_251, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_251
[19:09:48] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[19:09:48] [main/ERROR] [FML]: Full: C:\Users\jason\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[19:09:48] [main/ERROR] [FML]: Trimmed: c:/users/jason/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[19:09:48] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[19:09:48] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
2020-04-16 19:09:49,838 main WARN Disabling terminal, you're running in an unsupported environment.
[19:09:49] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[19:09:49] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[19:09:49] [main/INFO] [FML]: Searching C:\Users\jason\Documents\MinecraftModding\FirstMod\run\.\mods for mods
[19:09:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[19:09:49] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[19:09:49] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[19:09:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:09:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:09:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:09:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:09:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:09:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:09:51] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[19:09:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:09:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:09:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:09:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:09:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:09:51] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[19:09:52] [Client thread/INFO] [minecraft/Minecraft]: Setting user: Player859
[19:09:54] [Client thread/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[19:09:54] [Client thread/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4
[19:09:55] [Client thread/INFO] [FML]: -- System Details --
Details:
	Minecraft Version: 1.12.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_251, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 849744856 bytes (810 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 26.20.100.7926' Renderer: 'Intel(R) UHD Graphics 620'
[19:09:55] [Client thread/INFO] [FML]: MinecraftForge v14.23.5.2847 Initialized
[19:09:55] [Client thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[19:09:55] [Client thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
[19:09:55] [Client thread/INFO] [FML]: Replaced 1227 ore ingredients
[19:09:56] [Client thread/INFO] [FML]: Searching C:\Users\jason\Documents\MinecraftModding\FirstMod\run\.\mods for mods
[19:09:57] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[19:09:57] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, testmod] at CLIENT
[19:09:57] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, testmod] at SERVER
[19:09:57] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 79618800 nanos
[19:09:57] [Client thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Jason's First Mod (For Testing)
[19:09:58] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[19:09:58] [Client thread/INFO] [FML]: Found 1172 ObjectHolder annotations
[19:09:58] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[19:09:58] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[19:09:58] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[19:09:58] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[19:09:58] [Client thread/INFO] [FML]: Applying holder lookups
[19:09:58] [Client thread/INFO] [FML]: Holder lookups applied
[19:09:58] [Client thread/INFO] [FML]: Applying holder lookups
[19:09:58] [Client thread/INFO] [FML]: Holder lookups applied
[19:09:58] [Client thread/INFO] [FML]: Applying holder lookups
[19:09:58] [Client thread/INFO] [FML]: Holder lookups applied
[19:09:58] [Client thread/INFO] [FML]: Applying holder lookups
[19:09:58] [Client thread/INFO] [FML]: Holder lookups applied
[19:09:58] [Client thread/INFO] [FML]: Injecting itemstacks
[19:09:58] [Client thread/INFO] [FML]: Itemstack injection complete
[19:09:58] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: AHEAD Target: null
[19:10:00] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem...
[19:10:01] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL
[19:10:01] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[19:10:01] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized.
[19:10:01] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started
[19:10:06] [Client thread/INFO] [FML]: Max texture size: 8192
[19:10:06] [Client thread/INFO] [minecraft/TextureMap]: Created: 512x512 textures-atlas
[19:10:08] [Client thread/INFO] [FML]: Applying holder lookups
[19:10:08] [Client thread/INFO] [FML]: Holder lookups applied
[19:10:08] [Client thread/INFO] [FML]: Injecting itemstacks
[19:10:08] [Client thread/INFO] [FML]: Itemstack injection complete
[19:10:08] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[19:10:08] [Client thread/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[19:10:08] [Client thread/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[19:10:09] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[19:10:10] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[19:10:10] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[19:10:10] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[19:10:11] [Server thread/INFO] [FML]: Applying holder lookups
[19:10:11] [Server thread/INFO] [FML]: Holder lookups applied
[19:10:11] [Server thread/INFO] [FML]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@68b15d61)
[19:10:11] [Server thread/INFO] [minecraft/AdvancementList]: Loaded 488 advancements
[19:10:11] [Server thread/INFO] [FML]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@68b15d61)
[19:10:11] [Server thread/INFO] [FML]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@68b15d61)
[19:10:11] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for level 0
[19:10:12] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing spawn area: 60%
[19:10:13] [Server thread/INFO] [FML]: Unloading dimension -1
[19:10:13] [Server thread/INFO] [FML]: Unloading dimension 1
[19:10:13] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 7, from 10
[19:10:14] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[19:10:14] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[19:10:14] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[19:10:14] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[19:10:14] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[19:10:15] [Server thread/INFO] [minecraft/PlayerList]: Player859[local:E:40be9790] logged in with entity id 161 at (569.986475673182, 81.11650136792812, -232.3122268726715)
[19:10:15] [Server thread/INFO] [minecraft/MinecraftServer]: Player859 joined the game
[19:10:15] [Server thread/INFO] [testmod]: Before reading from NBT, value: null
[19:10:15] [Server thread/INFO] [testmod]: Read temporary from NBT, value: [569, 80, -230]
[19:10:15] [Server thread/INFO] [testmod]: Temporary meets requirements for replacing coords.
[19:10:15] [Server thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:10:15] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[19:10:15] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:10:15] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:10:15] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:10:15] [pool-2-thread-1/WARN] [mojang/YggdrasilMinecraftSessionService]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@4881e7f6[id=bd11acc2-8e1a-348b-89a6-a309159aa437,name=Player859,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
	at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
	at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3716) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2424) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2298) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2211) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache.get(LocalCache.java:4154) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5147) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:5153) [guava-21.0.jar:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?]
	at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3182) [Minecraft.class:?]
	at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?]
	at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_251]
	at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_251]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_251]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_251]
	at java.lang.Thread.run(Unknown Source) [?:1.8.0_251]
[19:10:15] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Resetting coords to tile entity coordinates, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Before reading from NBT, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [testmod]: Read temporary from NBT, value: []
[19:10:15] [Client thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:10:15] [Client thread/INFO] [minecraft/AdvancementList]: Loaded 6 advancements
[19:10:16] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[19:10:16] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:10:16] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:10:16] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:14] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[19:11:14] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:14] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:14] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:31] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[19:11:31] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[19:11:31] [Server thread/INFO] [minecraft/NetHandlerPlayServer]: Player859 lost connection: Disconnected
[19:11:31] [Server thread/INFO] [minecraft/MinecraftServer]: Player859 left the game
[19:11:31] [Server thread/INFO] [minecraft/NetHandlerPlayServer]: Stopping singleplayer server as player logged out
[19:11:31] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[19:11:31] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:31] [Server thread/INFO] [FML]: Unloading dimension 0
[19:11:31] [Server thread/INFO] [FML]: Applying holder lookups
[19:11:31] [Server thread/INFO] [FML]: Holder lookups applied
[19:11:32] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[19:11:32] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[19:11:32] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[19:11:33] [Server thread/INFO] [FML]: Applying holder lookups
[19:11:33] [Server thread/INFO] [FML]: Holder lookups applied
[19:11:33] [Server thread/INFO] [FML]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@7c272192)
[19:11:33] [Server thread/INFO] [minecraft/AdvancementList]: Loaded 488 advancements
[19:11:33] [Server thread/INFO] [FML]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@7c272192)
[19:11:33] [Server thread/INFO] [FML]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@7c272192)
[19:11:33] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for level 0
[19:11:34] [Server thread/INFO] [FML]: Unloading dimension -1
[19:11:34] [Server thread/INFO] [FML]: Unloading dimension 1
[19:11:34] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 7, from 10
[19:11:34] [Netty Local Client IO #1/INFO] [FML]: Server protocol version 2
[19:11:34] [Netty Server IO #3/INFO] [FML]: Client protocol version 2
[19:11:34] [Netty Server IO #3/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[19:11:34] [Netty Local Client IO #1/INFO] [FML]: [Netty Local Client IO #1] Client side modded connection established
[19:11:34] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[19:11:34] [Server thread/INFO] [minecraft/PlayerList]: Player859[local:E:14857183] logged in with entity id 553 at (570.8044004143898, 81.11650136792812, -232.62607233048033)
[19:11:34] [Server thread/INFO] [minecraft/MinecraftServer]: Player859 joined the game
[19:11:34] [Server thread/INFO] [testmod]: Before reading from NBT, value: null
[19:11:34] [Server thread/INFO] [testmod]: Read temporary from NBT, value: [569, 80, -230]
[19:11:34] [Server thread/INFO] [testmod]: Temporary meets requirements for replacing coords.
[19:11:34] [Server thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [minecraft/AdvancementList]: Loaded 6 advancements
[19:11:34] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Resetting coords to tile entity coordinates, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Before reading from NBT, value: [569, 80, -230]
[19:11:34] [Client thread/INFO] [testmod]: Read temporary from NBT, value: []
[19:11:34] [Client thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:38] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 90, -230]
[19:11:38] [Client thread/INFO] [testmod]: In TeleporterGUI, y-value: 90
[19:11:39] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[19:11:39] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:39] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:39] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:40] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[19:11:40] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[19:11:40] [Server thread/INFO] [minecraft/NetHandlerPlayServer]: Player859 lost connection: Disconnected
[19:11:40] [Server thread/INFO] [minecraft/MinecraftServer]: Player859 left the game
[19:11:40] [Server thread/INFO] [minecraft/NetHandlerPlayServer]: Stopping singleplayer server as player logged out
[19:11:40] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[19:11:40] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:40] [Server thread/INFO] [FML]: Unloading dimension 0
[19:11:40] [Server thread/INFO] [FML]: Applying holder lookups
[19:11:40] [Server thread/INFO] [FML]: Holder lookups applied
[19:11:45] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[19:11:45] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[19:11:45] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[19:11:46] [Server thread/INFO] [FML]: Applying holder lookups
[19:11:46] [Server thread/INFO] [FML]: Holder lookups applied
[19:11:46] [Server thread/INFO] [FML]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@759e47e1)
[19:11:46] [Server thread/INFO] [minecraft/AdvancementList]: Loaded 488 advancements
[19:11:46] [Server thread/INFO] [FML]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@759e47e1)
[19:11:46] [Server thread/INFO] [FML]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@759e47e1)
[19:11:46] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for level 0
[19:11:46] [Server thread/INFO] [FML]: Unloading dimension -1
[19:11:46] [Server thread/INFO] [FML]: Unloading dimension 1
[19:11:47] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 7, from 10
[19:11:47] [Netty Local Client IO #2/INFO] [FML]: Server protocol version 2
[19:11:47] [Netty Server IO #5/INFO] [FML]: Client protocol version 2
[19:11:47] [Netty Server IO #5/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[19:11:47] [Netty Local Client IO #2/INFO] [FML]: [Netty Local Client IO #2] Client side modded connection established
[19:11:47] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[19:11:47] [Server thread/INFO] [minecraft/PlayerList]: Player859[local:E:3184ed8f] logged in with entity id 947 at (570.8044004143898, 81.11650136792812, -232.62607233048033)
[19:11:47] [Server thread/INFO] [minecraft/MinecraftServer]: Player859 joined the game
[19:11:47] [Server thread/INFO] [testmod]: Before reading from NBT, value: null
[19:11:47] [Server thread/INFO] [testmod]: Read temporary from NBT, value: [569, 80, -230]
[19:11:47] [Server thread/INFO] [testmod]: Temporary meets requirements for replacing coords.
[19:11:47] [Server thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:47] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[19:11:47] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:47] [Client thread/INFO] [testmod]: Changed tile entity data, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Resetting coords to tile entity coordinates, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Before reading from NBT, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [testmod]: Read temporary from NBT, value: []
[19:11:47] [Client thread/INFO] [testmod]: Read from NBT, value: [569, 80, -230]
[19:11:47] [Client thread/INFO] [minecraft/AdvancementList]: Loaded 6 advancements
[19:11:47] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:47] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:55] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[19:11:55] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:55] [Server thread/INFO] [testmod]: Before writing to NBT, value: [569, 80, -230]
[19:11:55] [Server thread/INFO] [testmod]: Wrote to NBT, value: [569, 80, -230]
[19:11:57] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[19:11:57] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[19:11:57] [Server thread/INFO] [minecraft/NetHandlerPlayServer]: Player859 lost connection: Disconnected
[19:11:57] [Server thread/INFO] [minecraft/MinecraftServer]: Player859 left the game
[19:11:57] [Server thread/INFO] [minecraft/NetHandlerPlayServer]: Stopping singleplayer server as player logged out
[19:11:57] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[19:11:57] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'Test'/overworld
[19:11:57] [Server thread/INFO] [FML]: Unloading dimension 0
[19:11:57] [Server thread/INFO] [FML]: Applying holder lookups
[19:11:57] [Server thread/INFO] [FML]: Holder lookups applied
[19:11:57] [Client thread/INFO] [minecraft/Minecraft]: Stopping!
[19:11:57] [Client thread/INFO] [minecraft/SoundManager]: SoundSystem shutting down...
[19:11:58] [Client thread/WARN] [minecraft/SoundManager]: Author: Paul Lamb, www.paulscode.com
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

And here is TeleporterGUI.java:

package name.kolbly.testmod.guis;

import java.io.IOException;

import name.kolbly.testmod.TestMod;
import name.kolbly.testmod.blocks.TeleporterTE;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.gui.GuiTextField;
import net.minecraft.client.resources.I18n;

public class TeleporterGUI extends GuiScreen {
	public static int ID = 0;

	private GuiButton plusX;
	private GuiButton minusX;
	private GuiButton plusY;
	private GuiButton minusY;
	private GuiButton plusZ;
	private GuiButton minusZ;
	
	private GuiTextField xField;
	private GuiTextField yField;
	private GuiTextField zField;
	
	private GuiButton done;
	private GuiButton cancel;
	
	private final TeleporterTE teleporter;
	
	private int x;
	private int y;
	private int z;
	
	public TeleporterGUI(TeleporterTE teleporterTE) {
		this.teleporter = teleporterTE;
	}

	public void initGui() {
		
		this.buttonList.clear();
		
		this.plusX = this.addButton(new GuiButton(0, this.width / 2 - 35, this.height / 2 - 35, 20, 20, "+"));
		this.xField = new GuiTextField(1, this.fontRenderer, this.width / 2 - 35, this.height / 2 - 10, 20, 20);
		this.minusX = this.addButton(new GuiButton(2, this.width / 2 - 35, this.height / 2 + 15, 20, 20, "-"));
		
		this.plusY = this.addButton(new GuiButton(3, this.width / 2 - 10, this.height / 2 - 35, 20, 20, "+"));
		this.yField = new GuiTextField(4, this.fontRenderer, this.width / 2 - 10, this.height / 2 - 10, 20, 20);
		this.minusY = this.addButton(new GuiButton(5, this.width / 2 - 10, this.height / 2 + 15, 20, 20, "-"));
		
		this.plusZ = this.addButton(new GuiButton(6, this.width / 2 + 15, this.height / 2 - 35, 20, 20, "+"));
		this.zField = new GuiTextField(7, this.fontRenderer, this.width / 2 + 15, this.height / 2 - 10, 20, 20);
		this.minusZ = this.addButton(new GuiButton(8, this.width / 2 + 15, this.height / 2 + 15, 20, 20, "-"));
		
		this.done = this.addButton(new GuiButton(9, this.width / 2 - 155, this.height / 2 + 40, 150, 20, I18n.format("gui.done")));
		this.cancel = this.addButton(new GuiButton(10, this.width / 2 + 5, this.height / 2 + 40, 150, 20, I18n.format("gui.cancel")));
		
		this.x = teleporter.getX();
		this.y = teleporter.getY();
		this.z = teleporter.getZ();
				
		drawIntFields();
	}
	
	public boolean doesGuiPauseGame()
    {
        return false;
    }
	
	public void drawScreen(int mouseX, int mouseY, float partialTicks) {
		this.drawDefaultBackground();
		
		this.xField.drawTextBox();
		this.yField.drawTextBox();
		this.zField.drawTextBox();
		
		super.drawScreen(mouseX, mouseY, partialTicks);
	}
	
	protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException {
		super.mouseClicked(mouseX, mouseY, mouseButton);
		this.xField.mouseClicked(mouseX, mouseY, mouseButton);
		this.yField.mouseClicked(mouseX, mouseY, mouseButton);
		this.zField.mouseClicked(mouseX, mouseY, mouseButton);
	}
	
	protected void actionPerformed(GuiButton button) throws IOException {
		if (button.enabled) {
			switch (button.id) {
				case 0:
					this.x++;
					break;
				case 2:
					this.x--;
					break;
				case 3:
					this.y++;
					break;
				case 5:
					this.y--;
					break;
				case 6:
					this.z++;
					break;
				case 8:
					this.z--;
					break;
				case 9:
					mc.player.closeScreen();
					this.teleporter.setCoords(this.x, this.y, this.z);
					TestMod.logger.info("In TeleporterGUI, y-value: {}", this.teleporter.getY());
					break;
				case 10:
					mc.player.closeScreen();
					break;
			}
			drawIntFields();
		}
	}
		
	private void drawIntFields() {
		this.xField.setText(Integer.toString(this.x));
		this.yField.setText(Integer.toString(this.y));
		this.zField.setText(Integer.toString(this.z));
	}
	
}

 

EDIT: I'm using Forge 14.23.5.2847 with Minecraft 1.12.2

Edited by jkolbly
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Minecraft Crash Report pls help  ---- Minecraft Crash Report ---- WARNING: coremods are present:   EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   FTBUltimineASM (ftb-ultimine-1202.3.5.jar)   SoManyEnchantments ASM (SoManyEnchantments-0.5.5.jar)   SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.6.0.jar)   MixinBooter (!mixinbooter-9.4.jar)   ParagliderLoadingPlugin (Paraglider-1.12.2-1.0.1.5.jar)   Quark Plugin (Quark-r1.6-179.jar)   ApotheosisCore (Apotheosis-1.12.2-1.12.5.jar)   iceandfire (iceandfire-1.9.1-1.12.2.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   LootrCore (lootr-1.12.2-0.6.2.jar) Contact their authors BEFORE contacting forge // I'm sorry, Dave. Time: 10/8/24 1:15 AM Description: Exception in server tick loop net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiScreen     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:89)     at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:612)     at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)     at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595)     at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)     at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)     at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)     at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiScreen     at java.lang.Class.getDeclaredMethods0(Native Method)     at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)     at java.lang.Class.privateGetPublicMethods(Class.java:2902)     at java.lang.Class.getMethods(Class.java:1615)     at net.minecraftforge.fml.common.eventhandler.EventBus.register(EventBus.java:82)     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:82)     ... 31 more Caused by: java.lang.ClassNotFoundException: net.minecraft.client.gui.GuiScreen     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)     at java.lang.ClassLoader.loadClass(ClassLoader.java:418)     at java.lang.ClassLoader.loadClass(ClassLoader.java:351)     ... 37 more Caused by: net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@3a022576 from coremod FMLCorePlugin     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:260)     at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279)     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176)     ... 39 more Caused by: java.lang.RuntimeException: Attempted to load class blk for invalid side SERVER     at net.minecraftforge.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:62)     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256)     ... 41 more No Mixin Metadata is found in the Stacktrace. A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Linux (amd64) version 3.10.0-1160.118.1.el7.x86_64     Java Version: 1.8.0_282, AdoptOpenJDK     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), AdoptOpenJDK     Memory: 2299996568 bytes (2193 MB) / 2791833600 bytes (2662 MB) up to 4358406144 bytes (4156 MB)     JVM Flags: 9 total; -Xms2337M -Xmx4675M -XX:MaxMetaspaceSize=825M -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:-OmitStackTraceInFastThrow -XX:+AlwaysPreTouch -XX:+OptimizeStringConcat     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2859 59 mods loaded, 59 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                            | Version           | Source                                                  | Signature                                |     |:----- |:----------------------------- |:----------------- |:------------------------------------------------------- |:---------------------------------------- |     | LC    | minecraft                     | 1.12.2            | minecraft.jar                                           | None                                     |     | LC    | mcp                           | 9.42              | minecraft.jar                                           | None                                     |     | LC    | FML                           | 8.0.99.99         | server.jar                                              | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | forge                         | 14.23.5.2859      | server.jar                                              | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | mixinbooter                   | 9.4               | minecraft.jar                                           | None                                     |     | LC    | aiimprovements                | 0.0.1.3           | AIImprovements-1.12-0.0.1b3.jar                         | None                                     |     | LC    | placebo                       | 1.6.0             | Placebo-1.12.2-1.6.1.jar                                | None                                     |     | LC    | apotheosis                    | 1.12.4            | Apotheosis-1.12.2-1.12.5.jar                            | None                                     |     | LC    | aquaculture                   | 1.6.8             | Aquaculture-1.12.2-1.6.8.jar                            | None                                     |     | LC    | baubles                       | 1.5.2             | Baubles-1.12-1.5.2.jar                                  | None                                     |     | LC    | artifacts                     | 1.12.2-1.2.4      | artifacts-1.12.2-1.2.4.jar                              | None                                     |     | LC    | attributefix                  | 1.0.12            | AttributeFix-Forge-1.12.2-1.0.12.jar                    | None                                     |     | LC    | jei                           | 4.16.1.301        | jei_1.12.2-4.16.1.301.jar                               | None                                     |     | LC    | quark                         | r1.6-179          | Quark-r1.6-179.jar                                      | None                                     |     | LC    | autoreglib                    | 1.3-32            | AutoRegLib-1.3-32.jar                                   | None                                     |     | LC    | bettermineshafts              | 1.12.2-2.2.1      | BetterMineshaftsForge-1.12.2-2.2.1.jar                  | None                                     |     | LC    | bookshelf                     | 2.3.590           | Bookshelf-1.12.2-2.3.590.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | bookworm                      | 1.12.2-2.5.2.1    | bookworm-1.12.2-2.5.2.1.jar                             | None                                     |     | LC    | carryon                       | 1.12.3            | carryon-1.12.2-1.12.7.23.jar                            | None                                     |     | LC    | clumps                        | 3.1.2             | Clumps-3.1.2.jar                                        | None                                     |     | LC    | cosmeticarmorreworked         | 1.12.2-v5a        | CosmeticArmorReworked-1.12.2-v5a.jar                    | aaaf83332a11df02406e9f266b1b65c1306f0f76 |     | LC    | customnpcs                    | 1.12              | CustomNPCs_1.12.2-(05Jul20).jar                         | None                                     |     | LC    | darkutils                     | 1.8.230           | DarkUtils-1.12.2-1.8.230.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | fantasticlib                  | 1.12.2.047        | FantasticLib-1.12.2.047.jar                             | None                                     |     | LC    | fastleafdecay                 | v14               | FastLeafDecay-v14.jar                                   | None                                     |     | LC    | ftbultimine                   | 1202.3.5          | ftb-ultimine-1202.3.5.jar                               | None                                     |     | LC    | cfm                           | 6.3.0             | furniture-6.3.2-1.12.2.jar                              | None                                     |     | LE    | ibeeditor                     | 1.0.0-alpha5      | IBEEditor-1.12.2-1.0.0-alpha5.jar                       | None                                     |     | L     | llibrary                      | 1.7.20            | llibrary-1.7.20-1.12.2.jar                              | None                                     |     | L     | iceandfire                    | 1.9.1             | iceandfire-1.9.1-1.12.2.jar                             | None                                     |     | L     | ironchest                     | 1.12.2-7.0.67.844 | ironchest-1.12.2-7.0.72.847.jar                         | None                                     |     | L     | ironfurnaces                  | 1.3.5             | ironfurnaces-1.3.5.jar                                  | None                                     |     | L     | lootr                         | 0.6.2             | lootr-1.12.2-0.6.2.jar                                  | None                                     |     | L     | mcwfences                     | 1.0.0             | mcw-fences-1.0.0-mc1.12.2.jar                           | None                                     |     | L     | testdummy                     | 1.12              | MmmMmmMmmMmm-1.12-1.14.jar                              | None                                     |     | L     | mowziesmobs                   | 1.5.8             | mowziesmobs-1.5.8.jar                                   | None                                     |     | L     | paraglider                    | 1.0.1.5           | Paraglider-1.12.2-1.0.1.5.jar                           | None                                     |     | L     | patchouli                     | 1.0-23.6          | Patchouli-1.0-23.6.jar                                  | None                                     |     | L     | corerm                        | 1.3.3             | RikMuldsCore_1.3.3.jar                                  | None                                     |     | L     | setbonus                      | 1.12.2.020        | SetBonus-1.12.2.020.jar                                 | None                                     |     | L     | somanyenchantments            | 0.5.5             | SoManyEnchantments-0.5.5.jar                            | None                                     |     | L     | spartanshields                | 1.5.5             | SpartanShields-1.12.2-1.5.5.jar                         | None                                     |     | L     | spartanweaponry               | 1.6.0             | SpartanWeaponry-1.12.2-1.6.0.jar                        | None                                     |     | L     | stg                           | 1.12.2-1.2.3      | stg-1.12.2-1.2.3.jar                                    | None                                     |     | L     | supermartijn642configlib      | 1.1.6             | supermartijn642configlib-1.1.8-forge-mc1.12.jar         | None                                     |     | L     | camping                       | 2.4.3             | TheCampingMod_2.4.3.jar                                 | None                                     |     | L     | twilightforest                | 3.11.1021         | twilightforest-1.12.2-3.11.1021-universal.jar           | None                                     |     | L     | uteamcore                     | 2.2.5.305         | u_team_core-forge-1.12.2-2.2.5.305.jar                  | None                                     |     | L     | uniquebase                    | 1.0.1             | Unique Enchantments Base-1.12.2-1.1.4.jar               | None                                     |     | L     | uniqueebattle                 | 1.0.1             | Unique Enchantments Battle-1.12.2-1.1.6.jar             | None                                     |     | L     | uniqueeutil                   | 1.0.1             | Unique Enchantments Utils-1.12.2-1.5.1.jar              | None                                     |     | L     | uniquee                       | 2.0.1             | Unique Enchantments-1.12.2-2.1.4.jar                    | None                                     |     | L     | usefulbackpacks               | 1.5.4.85          | useful_backpacks-1.12.2-1.5.4.85.jar                    | None                                     |     | L     | variedcommodities             | 1.12.2            | VariedCommodities_1.12.2-(31Mar23).jar                  | None                                     |     | L     | wizardanimalsbeta10           | 1.0.0             | WizardAnimalsBeta1.0.jar                                | None                                     |     | L     | worldedit                     | 6.1.10            | worldedit-forge-mc1.12.2-6.1.10-dist.jar                | None                                     |     | L     | zawa                          | 1.12.2-2.1.3      | zawa-1.12.2-2.1.3.jar                                   | None                                     |     | L     | craftableenchantedgoldenapple | 1.0.0             | zaynens_craftable_enchanted_golden_apple_mod_1.12.2.jar | None                                     |     | L     | betteranimalsplus             | 9.0.1             | betteranimalsplus-1.12.2-9.0.1.jar                      | None                                     |     Loaded coremods (and transformers):  EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)    llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher FTBUltimineASM (ftb-ultimine-1202.3.5.jar)    SoManyEnchantments ASM (SoManyEnchantments-0.5.5.jar)   com.Shultrea.Rin.Transformer.SMEASM SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.6.0.jar)    MixinBooter (!mixinbooter-9.4.jar)    ParagliderLoadingPlugin (Paraglider-1.12.2-1.0.1.5.jar)   com.tictim.paraglider.asm.TransformerModelBiped Quark Plugin (Quark-r1.6-179.jar)   vazkii.quark.base.asm.ClassTransformer ApotheosisCore (Apotheosis-1.12.2-1.12.5.jar)   shadows.ApotheosisTransformer iceandfire (iceandfire-1.9.1-1.12.2.jar)   com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer LootrCore (lootr-1.12.2-0.6.2.jar)        Profiler Position: N/A (disabled)     Is Modded: Definitely; Server brand changed to 'fml,forge'     Type: Dedicated Server (map_server.txt)
    • [01:30:06] [main/INFO]: ModLauncher running: args [--username, AkadieL, --version, forge-47.2.0, --gameDir, C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized, --assetsDir, C:\Users\Administrator\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, b68ea54ae6484a0e8acb115f88c9aea5, --accessToken, ????????, --clientId, 28d704-b58c91-549ecf-a85a34-9fb39c, --xuid, 2533275030291833, --userType, msa, --versionType, release, --width, 1024, --height, 768, --launchTarget, forgeclient, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [01:30:06] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0 [01:30:07] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [01:30:07] [main/INFO]: Trying GL version 4.6 [01:30:07] [main/INFO]: Requested GL version 4.6 got version 4.6 [01:30:07] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Administrator/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [01:30:07] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 560.94, NVIDIA Corporation [01:30:08] [main/INFO]: Found mod file AdvancementPlaques-1.20.1-forge-1.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AI-Improvements-1.20-0.5.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AirHop-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file alexscaves-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file alexsmobs-1.22.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.0.2_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AnvilNeverTooExpensive-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file aquaculture_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file aquamirae-6.API15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file astemirlib-1.20.1-1.25.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AxesAreWeapons-1.7.3-forge-1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.6-all.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file bellsandwhistles-0.4.3-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterAdvancements-1.20.1-0.3.2.161.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file betterarcheology-1.1.9-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterCompatibilityChecker-forge-4.0.8+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterPingDisplay-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterTridents-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file biomespawnpoint-1.20.1-2.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file blockui-1.20.1-1.0.156-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file canary-mc1.20.1-0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file catalogue-forge-1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Chimes-v2.0.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Choup's Drakvyrn Mod for 1.20.1 (v2.4.0).jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Chunk-Pregenerator-1.20-4.4.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file chunkloaders-1.2.8a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file citadel-2.5.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file clickadv-1.20.1-3.8.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cloth-config-11.1.118-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file collective-1.20.1-7.64.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file comforts-forge-6.3.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cookingforblockheads-forge-1.20.1-16.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CorgiLib-forge-1.20.1-4.0.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file corn_delight-1.0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CrabbersDelight-1.20.1-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CraftTweaker-forge-1.20.1-14.0.40.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file create-1.20.1-0.5.1.f.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file createaddition-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CreativeCore_FORGE_v2.11.30_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file creeperoverhaul-3.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ctov-forge-3.4.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cuisinedelight-1.1.14.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cupboard-1.20.1-2.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file curios-forge-5.9.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file customcameraview-forge-1.20.1-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DamageVignette-2.0.2-forge+mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file deathbackup-1.20.1-3.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file deeperdarker-forge-1.20.1-1.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file dimensionviewer-1.20-1.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Disenchanting-forge-1.20.1-2.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DoggyTalentsNext-1.20.1-1.18.18.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file doubledoors-1.20.1-5.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file dummmmmmy-1.20-1.8.17b.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DungeonsArise-1.20.x-2.1.58-release.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EasierSleeping-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easy-villagers-forge-1.20.1-1.1.23.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easy_mob_farm_1.20.1-7.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easy_npc-forge-1.20.1-5.6.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easynetheritev1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EasyShulkerBoxes-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file elytraslot-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file embeddiumplus-1.20.1-v1.2.13.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EnchantingInfuser-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.0.16.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file endersdelight-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Enhanced_Celestials-forge-1.20.1-5.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file entityculling-forge-1.6.6-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EquipmentCompare-1.20.1-forge-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ExplorersCompass-1.20.1-1.3.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Fallingleaves-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FallingTree-1.20.1-4.3.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fancymenu_forge_3.2.3_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Fantastic Remastered Structures 1.20+1.20.6-0.5 For+fab.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file farmingforblockheads-forge-1.20.1-14.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file farsight-1.20.1-3.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FastFurnace-1.20.1-8.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fastpaintings-1.20-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fish_of_thieves-mc1.20.1-v3.0.7-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fixexperiencebug-1.20-46.2.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FriendlyFire-Forge-1.20.1-18.0.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FriendlyGriefing-1.20-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file friendsandfoes-forge-mc1.20.1-2.0.10.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file GeckoLibOculusCompat-Forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file goblintraders-forge-1.20.1-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file guccivuitton-1.20.1-0.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file handcrafted-forge-1.20.1-3.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file highlight-forge-1.20-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file hitindication-1.20.1-1.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.21.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file IllagerInvasion-v8.0.5-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Incendium_1.20.x_v5.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file inventoryessentials-forge-1.20.1-8.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file inventoryhud.forge.1.20.1-3.4.26.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ItemPhysicLite_FORGE_v1.6.4_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Jade-1.20.1-forge-11.7.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file jei-1.20.1-forge-15.3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file lradd-1.20.1-0.2.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file lucky-block-forge-1.20.1-13.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file lukis-grand-capitals-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file MaxEnchantX-1.20.X-1.3-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mcw-bridges-3.0.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mcw-lights-1.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file melody_forge_1.0.3_MC_1.20.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file modnametooltip-1.20.1-1.20.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file moonlight-1.20-2.12.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20-2.25.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mysterious_mountain_lib-1.4.7-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file nethersdelight-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file obscure_api-15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file oceansdelight-1.0.2-1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file oculus-mc1.20.1-1.6.15a.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file okzoomer-forge-1.20-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Placebo-1.20.1-8.6.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file puzzledungeon-forge-1.20.1-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.20-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.24-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Quark-4.0-436.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.3.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.25.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file sliceanddice-forge-3.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file supermartijn642corelib-1.1.17-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file tact-1.0.9+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file tacz-1.20.1-1.0.3-all.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Terralith_1.20_v2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file The_Undergarden-1.20.1-0.8.14.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file tlc_forge-1.0.3-R-1.20.X.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file torchmaster-20.1.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ToughAsNails-1.20.1-9.0.0.96.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file travelersbackpack-forge-1.20.1-9.1.15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file TravelersTitles-1.20-Forge-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file undergarden_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file UniversalEnchants-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file waystones-forge-1.20-14.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file WitherSkeletonTweaks-1.20.1-9.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file worldedit-mod-7.2.15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file wso16-forge-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Xaeros_Minimap_24.2.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file xaeros_waystones_compability-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file XaerosWorldMap_1.37.8_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBridges-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsExtras-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Zeta-1.0-13.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.0\fmlcore-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.0\javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.0\lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.0\mclanguage-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/INFO]: Found mod file fmlcore-1.20.1-47.2.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file mclanguage-1.20.1-47.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file forge-1.20.1-47.2.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [01:30:08] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [01:30:08] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [01:30:08] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods\resourcefullib-forge-1.20.1-2.1.25.jar [01:30:08] [main/INFO]: Found 23 dependencies adding them to mods collection [01:30:08] [main/INFO]: Found mod file jctools-core-4.0.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file MixinExtras-0.3.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file mixinextras-forge-0.3.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file kuma-api-forge-20.1.8+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file puzzlesapi-forge-8.1.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file MinecraftForgeAPI-1.20.1-1.0.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file luaj-core-3.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file Registrate-MC1.20-1.3.11.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file animated-gif-lib-for-java-animated-gif-lib-1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file l2library-2.4.14-slim.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file l2serial-1.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file flywheel-forge-1.20.1-0.6.10-7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file luaj-jse-3.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file commons-math3-3.6.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file japng-0.5.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:09] [main/ERROR]: Missing or unsupported mandatory dependencies:     Mod ID: 'structure_gel', Requested by: 'blue_skies', Expected range: '[2.13.0,]', Actual version: '[MISSING]'     Mod ID: 'kotlinforforge', Requested by: 'sliceanddice', Expected range: '[4.3.0,)', Actual version: '[MISSING]'     Mod ID: 'searchables', Requested by: 'controlling', Expected range: '[1.0,)', Actual version: '[MISSING]' [01:30:11] [main/INFO]: Compatibility level set to JAVA_17 [01:30:11] [main/ERROR]: Mixin config geckoanimfix.forge.mixins.json does not specify "minVersion" property [01:30:11] [main/ERROR]: Mixin config okzoomer.mixins.json does not specify "minVersion" property [01:30:11] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.2.0, --gameDir, C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized, --assetsDir, C:\Users\Administrator\curseforge\minecraft\Install\assets, --uuid, b68ea54ae6484a0e8acb115f88c9aea5, --username, AkadieL, --assetIndex, 5, --accessToken, ????????, --clientId, 28d704-b58c91-549ecf-a85a34-9fb39c, --xuid, 2533275030291833, --userType, msa, --versionType, release, --width, 1024, --height, 768] [01:30:11] [main/INFO]: Loaded configuration file for Embeddium: 44 options available, 0 override(s) found [01:30:11] [main/INFO]: Searching for graphics cards... [01:30:11] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 3060, version=DriverVersion=32.0.15.6094] [01:30:11] [main/WARN]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [01:30:11] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [01:30:11] [main/WARN]: Reference map 'handcrafted-forge-1.20.1-forge-refmap.json' for handcrafted.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras_forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'cuisinedelight.refmap.json' for cuisinedelight.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'AxesAreWeapons-forge-refmap.json' for axesareweapons.forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'guccivuitton.refmap.json' for guccivuitton.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/INFO]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [01:30:11] [main/INFO]: Loading 2 mods:     - forge 47.2.0     - minecraft 1.20.1 [01:30:11] [main/WARN]: Reference map 'Aquamirae.refmap.json' for aquamirae.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'cookingforblockheads.refmap.json' for cookingforblockheads.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'LesRaisinsAddon_1201.refmap.json' for lradd.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:12] [main/WARN]: Error loading class: dev/latvian/mods/kubejs/recipe/RecipesEventJS (java.lang.ClassNotFoundException: dev.latvian.mods.kubejs.recipe.RecipesEventJS) [01:30:12] [main/WARN]: @Mixin target dev.latvian.mods.kubejs.recipe.RecipesEventJS was not found sliceanddice.mixins.json:RecipeEventJSMixin [01:30:12] [main/WARN]: Error loading class: dev/emi/emi/screen/EmiScreenManager (java.lang.ClassNotFoundException: dev.emi.emi.screen.EmiScreenManager) [01:30:12] [main/WARN]: Error loading class: me/shedaniel/rei/impl/client/gui/ScreenOverlayImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.gui.ScreenOverlayImpl) [01:30:12] [main/WARN]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [01:30:12] [main/ERROR]: Could not find embeddium mod, there is likely a dependency error. Skipping mixin application. [01:30:12] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.6). [01:30:13] [pool-4-thread-1/WARN]: This is the stupidest thing I've ever made in Minecraft modding history...           Even if I check the log list, I don't know what the problem is. especially. [01:30:09] [Main/ERROR]: No mandatory dependency or not supported: Mode ID: 'structure_gel', requester: 'blue_skys', expected range: '[2.13.0,], actual version: '[missing]' Mode ID: 'kotlinforge', Requestor: 'slice and die', Expected range: '[4.3.0,]', Actual version: '[missing]' Mode ID: 'Searchable', Requestor: 'In Control', Expected Range: '[1.0,]', Actual Version: '[Omitted]'   I've been looking for things I need in this area, but Minecraft is still annoying.
    • i'm trying to modify the attack damage in minecraft modded weapons i can only modify the attack damage in non-modded weapons it's in 1.8.9
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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