Unable to get mutable windows environment variable map java

When i try build project, terminal return error: FAILURE: Build failed with an exception. What went wrong: Unable to get mutable Windows environment variable map build.gradle: buildscript { e...

When i try build project, terminal return error:
FAILURE: Build failed with an exception.

  • What went wrong:
    Unable to get mutable Windows environment variable map

build.gradle:

buildscript {
    ext {
        springBootVersion = '2.1.18.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

group = 'com.kodilla'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}


dependencies {
    implementation('org.springframework.boot:spring-boot-starter-data-jpa')
    implementation('org.springframework.boot:spring-boot-starter-web')
    implementation 'org.projectlombok:lombok:1.18.24'
    runtimeOnly('com.h2database:h2')
    testImplementation('org.springframework.boot:spring-boot-starter-test')
    implementation group: 'mysql', name: 'mysql-connector-java', version: '5.1.13'
}

PS D:DevelopmentProjectsproject-jdp-2212-02> ./gradlew wrapper —stacktrace

FAILURE: Build failed with an exception.

  • What went wrong:
    Unable to get mutable Windows environment variable map

  • Try:
    Run with —info or —debug option to get more log output. Run with —scan to get full insights.

  • Exception is:
    net.rubygrapefruit.platform.NativeException: Unable to get mutable Windows environment variable map
    at net.rubygrapefruit.platform.internal.WrapperProcess.getWindowsEnv(WrapperProcess.java:127)
    at net.rubygrapefruit.platform.internal.WrapperProcess.setEnvInternal(WrapperProcess.java:100)
    at net.rubygrapefruit.platform.internal.WrapperProcess.setEnvironmentVariable(WrapperProcess.java:85)
    at org.gradle.internal.nativeintegration.processenvironment.NativePlatformBackedProcessEnvironment.setNativeEnvironmentVariable(NativePlatformBackedProcessEnvironment.java:36)
    at org.gradle.internal.nativeintegration.processenvironment.AbstractProcessEnvironment.setEnvironmentVariable(AbstractProcessEnvironment.java:67)
    at org.gradle.internal.nativeintegration.processenvironment.AbstractProcessEnvironment.maybeSetEnvironment(AbstractProcessEnvironment.java:41)
    at org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment.doBuild(EstablishBuildEnvironment.java:65)
    at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36)
    at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122)
    at org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy$1.run(StartBuildOrRespondWithBusy.java:50)
    at org.gradle.launcher.daemon.server.DaemonStateCoordinator$1.run(DaemonStateCoordinator.java:295)
    at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
    at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)
    at java.base/java.lang.Thread.run(Thread.java:833)
    Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make field private static final java.util.Map java.lang.ProcessEnvironment.theCaseInsensitiveEnvironment accessible: module java.base does not «opens java.lang» to
    unnamed module @5a39699c
    at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
    at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
    at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
    at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
    at net.rubygrapefruit.platform.internal.WrapperProcess.getWindowsEnv(WrapperProcess.java:124)
    … 16 more

  • Get more help at https://help.gradle.org

Tried to find a solution in web but to no avail

asked Nov 20, 2022 at 20:40

Mateusz Kuncewicz's user avatar

7

I think that based on what you wrote in the comments under your post I found the cause of the error.

Take a look at the Gradle version you are using and the JVM version — the time difference between them is quite large. In other words, they are incompatible.

enter image description here

Update gradle version or change JAVA_HOME path to older JVM version

answered Nov 20, 2022 at 21:34

Oskarro's user avatar

«Unable to get Windows mutable environment variable map»

I’m gonna tell a debugging story. It involves Gradle, Windows, Java 8, Java 16, and a funky package manager.

Okay, time to update my Gradle wrapper from an ancient Gradle 4 to the latest version as of writing this, Gradle 7.0.2.

$ ./gradlew wrapper --gradle-version 7.0.2

FAILURE: Build failed with an exception.

* What went wrong:
Unable to get mutable Windows environment variable map

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

Hm.

I googled for this error and, while several people have had this problem (including a few fellow Minecraft modders), nobody had posted a solution. Time to debug it myself.

Let’s try --stacktrace.

$ ./gradlew wrapper --gradle-version 7.0.2 --stacktrace

[same error as before]

* Exception is:
net.rubygrapefruit.platform.NativeException: Unable to get mutable Windows environment variable map

		[big stacktrace]
		
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make field private static final java.util.Map java.lang.ProcessEnvironment.theCaseInsensitiveEnvironment accessible: module java.base does not "opens java.lang" to
unnamed module @7dc36524
        at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:357)
        at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
        at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:177)
        at java.base/java.lang.reflect.Field.setAccessible(Field.java:171)
        at net.rubygrapefruit.platform.internal.WrapperProcess.getWindowsEnv(WrapperProcess.java:124)

Some stuff about modules, accessibility… What version of Java is this thing running on, again?

$ ./gradlew --version

------------------------------------------------------------
Gradle 4.10.2
------------------------------------------------------------

Build time:   2018-09-19 18:10:15 UTC
Revision:     b4d8d5d170bb4ba516e88d7fe5647e2323d791dd

Kotlin DSL:   1.0-rc-6
Kotlin:       1.2.61
Groovy:       2.4.15
Ant:          Apache Ant(TM) version 1.9.11 compiled on March 23 2018
JVM:          16.0.1 (AdoptOpenJDK 16.0.1+9-202105072336)
OS:           Windows 10 10.0 amd64

Java 16 — yeah, that would do it. Frustrating. I do have both Java 8 and Java 16 installed on my computer (through scoop, a Windows package manager), so this looks like a matter of telling Gradle which version to use.

Let’s determine how the Gradle wrapper script, gradlew, discovers the Java command to use.

# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
    else
        JAVACMD="$JAVA_HOME/bin/java"
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD="java"
    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi

If the JAVA_HOME variable is set, it checks there first, otherwise it looks for java on the path.

Sure enough:

$ echo $JAVA_HOME
C:Usersquatscoopappsadopt16-hotspot-nightlycurrent

I’ll change it to where my Java 8 installation is:

$ export JAVA_HOME="C:Usersquatscoopappsadopt8-hotspotcurrent"

$

Let’s try it:

$ ./gradlew wrapper --gradle-version 7.0.2
Starting a Gradle Daemon, 2 incompatible Daemons could not be reused, use --status for details

FAILURE: Build failed with an exception.

* Where:
Build file 'G:Devfabriccarvedmelonsbuild.gradle' line: 2

* What went wrong:
An exception occurred applying plugin request [id: 'fabric-loom', version: '0.8-SNAPSHOT']
> Failed to apply plugin [id 'fabric-loom']
   > You are using an outdated version of Gradle (4.10.2). Gradle 7 or higher is required.
     You are using an outdated version of Java (8). Java 16 or higher is required.
     The JAVA_HOME environment variable is currently set to (C:Usersquatscoopappsadopt8-hotspotcurrent).

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 5s

Different error, so hey, that’s something!

Here we have a chicken-and-egg problem. I wanted to update my wrapper in the first place, because the version of the plugin I was using, fabric-loom version 0.8, isn’t happy with Java 8 anymore.

But the plugin’s error is preventing the wrapper-update script from running in the first place.

I’ll resolve this by cheating, and renaming my build.gradle to like, build.gradle.old or something. Try again.

$ ./gradlew wrapper --gradle-version 7.0.2
> Task :wrapper

BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed

Well that took a suspiciously small amount of time, did it work?

$ ./gradlew --version

------------------------------------------------------------
Gradle 7.0.2
------------------------------------------------------------

Build time:   2021-05-14 12:02:31 UTC
Revision:     1ef1b260d39daacbf9357f9d8594a8a743e2152e

Kotlin:       1.4.31
Groovy:       3.0.7
Ant:          Apache Ant(TM) version 1.10.9 compiled on September 27 2020
JVM:          1.8.0_292 (AdoptOpenJDK 25.292-b10)
OS:           Windows 10 10.0 amd64

Looks like it did!

Finally I can put back my build.gradle, and reset my JAVA_HOME to point at Java 16. Success?

Things that didn’t work

Initially tried to change my system PATH to put the adopt8-hotspot version before adopt16-hotspot-nightly, but that didn’t work. I wasn’t familiar with the JAVA_HOME variable and that’s the one the gradle wrapper script checks first.

I also tried editing environment variables through the Windows “edit system environment variables” dialog, but I’m not sure when the “git bash” environment picks up on those changes…? I tried everything short of restarting my computer and changes to JAVA_HOME through the dialog didn’t seem to be reflected. I don’t know if there’s another script resetting it to the adopt16 path lying around somewhere, or caching, or if I need to restart, or what.

Oh

A friend mentioned that you can change distributionUrl in {project root}/.gradle/wrapper/gradle.properties. That might be an easier and less error-prone way to update Gradle. Ah well.

Takeaways

So really, I discovered that running Gradle tasks from the terminal ran then in Java 16, but running tasks from IntelliJ ran them in Java 8.

The Java version used to run IDE tasks can be changed in Build, Execution, Deployment > Build Tools > Gradle. It can be set to read from JAVA_HOME, the PATH, or use a hardcoded Java path on your computer.

  • The module system introduced in Java 9 has brought nothing but suffering into the world.
  • Pain, pain and suffering.
  • Always scan stacktraces for “module”-related issues, because random reflection-related crashes are almost always caused by Java 16.
  • Having both Java 8 and 16 installed on your computer is:
    • useful,
    • “fun”,
    • probably neccesary for dealing with old Java crap — I dunno what I’d do if I didn’t have a Java 8 installation lying around.
    • Maybe I should get one of those “java version manager” programs?
  • Renaming build.gradle makes gradle not pick up on it. Good to keep in the back of my head.

Hey uh, wait, Loom is still crashing

Now the blogpost transitions from “debugging a Gradle issue” to “debugging Loom”, because I’m updating an old Minecraft mod and it’s, uh, it’s still not working.

First two issues:

  • Loom whined about getting ran on Java 8 again, so I checked Build, Execution, Deployment > Build Tools > Gradle in IntelliJ and set Gradle to run on Java 16 from there as well. (There’s an option to make it use whatever Java’s in JAVA_HOME.)
  • Gradle complained about insecure Maven repositories. If you cloned from fabric-example-mod, just open settings.gradle and change 'http://maven.fabricmc.net/' to start with https://. Or wherever the repo links happen to be in your setup.

Now what:

A problem occurred evaluating root project 'carvedmelons'.
> Could not find method modCompile() for arguments [net.fabricmc:fabric-loader:0.11.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

This is because: some time between Gradle 4 and 7, they removed the “compile” method and renamed it to “implementation”. Loom folowed suit, renaming “modCompile” to “modImplementation”. Perform that rename in your buildscript.

Crossing my claws:

BUILD SUCCESSFUL in 45s

Cool.

Wait one more thing

I tried to run build to produce a release .jar and it said something about fabric.mod.json and “duplicates”. Another Gradle 4 to Gradle 7 mess.

In the buildscript’s processResources block, change this:

from(sourceSets.main.resources.srcDirs) {
	include "fabric.mod.json"
	expand "gradleversion": project.version
}

to this:

filesMatching("fabric.mod.json") {
	expand "version": project.version
}

And you’re golden.


By

OrDH · Posted 2 hours ago

[04Feb2023 21:43:37.977] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [—username, TheLion455, —version, forge-40.2.0, —gameDir, C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpack, —assetsDir, C:Usersuser1curseforgeminecraftInstallassets, —assetIndex, 1.18, —uuid, b03ebf105ce24f789c7c762d8495f548, —accessToken, ????????, —clientId, MmZjMTI1ZjAtYjlkYy00ZTFmLTg3NzAtNTA2YWQ3MmQ5ODQy, —xuid, 2535466864956063, —userType, msa, —versionType, release, —width, 1024, —height, 768, —launchTarget, forgeclient, —fml.forgeVersion, 40.2.0, —fml.mcVersion, 1.18.2, —fml.forgeGroup, net.minecraftforge, —fml.mcpVersion, 20220404.173914]
[04Feb2023 21:43:37.984] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 9.1.3+9.1.3+main.9b69c82a starting: java version 17.0.1 by Microsoft
[04Feb2023 21:43:38.024] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev]
[04Feb2023 21:43:38.042] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
[04Feb2023 21:43:38.139] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner]
[04Feb2023 21:43:38.169] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services
[04Feb2023 21:43:38.410] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: java.util.stream.ReferencePipeline$3@5b970f7
[04Feb2023 21:43:38.447] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml]
[04Feb2023 21:43:38.448] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[04Feb2023 21:43:38.449] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin
[04Feb2023 21:43:38.449] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin
[04Feb2023 21:43:38.449] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[04Feb2023 21:43:38.454] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0
[04Feb2023 21:43:38.454] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading
[04Feb2023 21:43:38.454] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 9.1.3+9.1.3+main.9b69c82a
[04Feb2023 21:43:38.455] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7
[04Feb2023 21:43:38.455] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 5.0.3+70+master.d7d405b
[04Feb2023 21:43:38.455] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner
[04Feb2023 21:43:38.458] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922
[04Feb2023 21:43:38.458] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 4.0.15-4.x+4.0.15-4.x+4.x.038e91c0
[04Feb2023 21:43:38.458] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 4
[04Feb2023 21:43:38.461] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[04Feb2023 21:43:38.462] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[04Feb2023 21:43:38.471] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[04Feb2023 21:43:38.473] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin
[04Feb2023 21:43:38.522] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@291ae
[04Feb2023 21:43:38.555] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/user1/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2314!/ Service=ModLauncher Env=CLIENT
[04Feb2023 21:43:38.562] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager
[04Feb2023 21:43:38.563] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)
[04Feb2023 21:43:38.564] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)
[04Feb2023 21:43:38.565] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)
[04Feb2023 21:43:38.565] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)
[04Feb2023 21:43:38.566] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)
[04Feb2023 21:43:38.570] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin
[04Feb2023 21:43:38.570] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[04Feb2023 21:43:38.570] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories
[04Feb2023 21:43:38.572] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing GAMEDIR directory : C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpack
[04Feb2023 21:43:38.573] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpack
[04Feb2023 21:43:38.573] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing MODSDIR directory : C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmods
[04Feb2023 21:43:38.573] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmods
[04Feb2023 21:43:38.574] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing CONFIGDIR directory : C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackconfig
[04Feb2023 21:43:38.574] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackconfig
[04Feb2023 21:43:38.574] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackconfigfml.toml
[04Feb2023 21:43:38.574] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration
[04Feb2023 21:43:38.635] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing default config directory directory : C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackdefaultconfigs
[04Feb2023 21:43:38.636] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile
[04Feb2023 21:43:38.642] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler
[04Feb2023 21:43:38.643] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclient as launch service
[04Feb2023 21:43:38.665] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=40.2.0, mcVersion=1.18.2, mcpVersion=20220404.173914, forgeGroup=net.minecraftforge]
[04Feb2023 21:43:38.667] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml
[04Feb2023 21:43:38.667] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is ‘srg’
[04Feb2023 21:43:38.668] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {}
[04Feb2023 21:43:38.669] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning
[04Feb2023 21:43:38.670] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger — transformation service mixin
[04Feb2023 21:43:38.671] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger — transformation service mixin
[04Feb2023 21:43:38.671] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger — transformation service fml
[04Feb2023 21:43:38.671] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan
[04Feb2023 21:43:38.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: []
[04Feb2023 21:43:38.688] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null),(JarInJar:null)
[04Feb2023 21:43:38.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmods3dskinlayers-forge-1.5.2-mc1.18.2.jar
[04Feb2023 21:43:38.759] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file 3dskinlayers-forge-1.5.2-mc1.18.2.jar with {skinlayers3d} mods — versions {1.5.2}
[04Feb2023 21:43:38.763] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsAI-Improvements-1.18.2-0.5.2.jar
[04Feb2023 21:43:38.767] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AI-Improvements-1.18.2-0.5.2.jar with {aiimprovements} mods — versions {0.5.2}
[04Feb2023 21:43:38.771] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsAkashicTome-1.5-20.jar
[04Feb2023 21:43:38.772] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AkashicTome-1.5-20.jar with {akashictome} mods — versions {1.5-20}
[04Feb2023 21:43:38.776] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsAlex’s Mobs Music Mod.jar
[04Feb2023 21:43:38.778] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Alex’s Mobs Music Mod.jar with {peepomod} mods — versions {0.0NONE}
[04Feb2023 21:43:38.788] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsalexsabnormalities-1.2.1.jar
[04Feb2023 21:43:38.794] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsabnormalities-1.2.1.jar with {alexsabnormalities} mods — versions {1.2.1}
[04Feb2023 21:43:38.799] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsalexsdelight-1.18.2-1.3.3.jar
[04Feb2023 21:43:38.803] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsdelight-1.18.2-1.3.3.jar with {alexsdelight} mods — versions {1.3.3}
[04Feb2023 21:43:38.811] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsalexsmobs-1.18.6.jar
[04Feb2023 21:43:38.815] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsmobs-1.18.6.jar with {alexsmobs} mods — versions {1.18.6}
[04Feb2023 21:43:38.824] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsApotheosis-1.18.2-5.7.7.jar
[04Feb2023 21:43:38.828] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Apotheosis-1.18.2-5.7.7.jar with {apotheosis} mods — versions {5.7.7}
[04Feb2023 21:43:38.837] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsappleskin-forge-mc1.18.2-2.4.1.jar
[04Feb2023 21:43:38.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file appleskin-forge-mc1.18.2-2.4.1.jar with {appleskin} mods — versions {2.4.1+mc1.18.2}
[04Feb2023 21:43:38.875] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsappliedenergistics2-forge-11.7.0.jar
[04Feb2023 21:43:38.890] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file appliedenergistics2-forge-11.7.0.jar with {ae2} mods — versions {11.7.0}
[04Feb2023 21:43:38.899] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsAquaculture-1.18.2-2.3.10.jar
[04Feb2023 21:43:38.900] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Aquaculture-1.18.2-2.3.10.jar with {aquaculture} mods — versions {1.18.2-2.3.10}
[04Feb2023 21:43:38.909] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsarchitectury-4.10.88-forge.jar
[04Feb2023 21:43:38.911] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file architectury-4.10.88-forge.jar with {architectury} mods — versions {4.10.88}
[04Feb2023 21:43:38.926] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsars_nouveau-1.18.2-2.8.0.jar
[04Feb2023 21:43:38.928] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ars_nouveau-1.18.2-2.8.0.jar with {ars_nouveau} mods — versions {2.8.0}
[04Feb2023 21:43:38.937] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsartifacts-1.18.2-4.2.0.jar
[04Feb2023 21:43:38.941] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file artifacts-1.18.2-4.2.0.jar with {artifacts} mods — versions {1.18.2-4.2.0}
[04Feb2023 21:43:38.964] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsAttributeFix-Forge-1.18.2-14.0.2.jar
[04Feb2023 21:43:38.967] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AttributeFix-Forge-1.18.2-14.0.2.jar with {attributefix} mods — versions {14.0.2}
[04Feb2023 21:43:38.974] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsAutoRegLib-1.7-53.jar
[04Feb2023 21:43:38.975] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AutoRegLib-1.7-53.jar with {autoreglib} mods — versions {1.7-53}
[04Feb2023 21:43:38.979] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsbalm-3.2.2+0.jar
[04Feb2023 21:43:38.981] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file balm-3.2.2+0.jar with {balm} mods — versions {3.2.2+0}
[04Feb2023 21:43:38.986] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsbdlib-1.19.3.7-mc1.18.2.jar
[04Feb2023 21:43:38.987] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file bdlib-1.19.3.7-mc1.18.2.jar with {bdlib} mods — versions {1.19.3.7}
[04Feb2023 21:43:38.991] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsBetterAdvancements-1.18.2-0.2.0.146.jar
[04Feb2023 21:43:38.994] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BetterAdvancements-1.18.2-0.2.0.146.jar with {betteradvancements} mods — versions {0.2.0.146}
[04Feb2023 21:43:38.998] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsBetterCompatibilityChecker-1.1.21-build.48+mc1.18.2.jar
[04Feb2023 21:43:38.999] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BetterCompatibilityChecker-1.1.21-build.48+mc1.18.2.jar with {bcc} mods — versions {1.1.21-build.48+mc1.18.2}
[04Feb2023 21:43:39.003] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsBetterF3-3.0.0-Forge-1.18.2.jar
[04Feb2023 21:43:39.005] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BetterF3-3.0.0-Forge-1.18.2.jar with {betterf3} mods — versions {3.0.0}
[04Feb2023 21:43:39.010] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsBiomesOPlenty-1.18.2-16.0.0.109-universal.jar
[04Feb2023 21:43:39.011] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BiomesOPlenty-1.18.2-16.0.0.109-universal.jar with {biomesoplenty} mods — versions {1.18.2-16.0.0.109}
[04Feb2023 21:43:39.015] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsblueprint-1.18.2-5.5.0.jar
[04Feb2023 21:43:39.015] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file blueprint-1.18.2-5.5.0.jar with {blueprint} mods — versions {5.5.0}
[04Feb2023 21:43:39.031] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsBookshelf-Forge-1.18.2-13.2.52.jar
[04Feb2023 21:43:39.032] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Bookshelf-Forge-1.18.2-13.2.52.jar with {bookshelf} mods — versions {13.2.52}
[04Feb2023 21:43:39.038] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsBotanyPots-Forge-1.18.2-8.1.25.jar
[04Feb2023 21:43:39.040] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BotanyPots-Forge-1.18.2-8.1.25.jar with {botanypots} mods — versions {8.1.25}
[04Feb2023 21:43:39.044] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsbuildinggadgets-3.13.1-build.18+mc1.18.2.jar
[04Feb2023 21:43:39.045] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file buildinggadgets-3.13.1-build.18+mc1.18.2.jar with {buildinggadgets} mods — versions {3.13.1-build.18+mc1.18.2}
[04Feb2023 21:43:39.050] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsbwncr-3.13.21.jar
[04Feb2023 21:43:39.051] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file bwncr-3.13.21.jar with {bwncr} mods — versions {3.13.21}
[04Feb2023 21:43:39.056] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscaelus-forge-1.18.1-3.0.0.2.jar
[04Feb2023 21:43:39.057] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file caelus-forge-1.18.1-3.0.0.2.jar with {caelus} mods — versions {1.18.1-3.0.0.2}
[04Feb2023 21:43:39.061] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscarryon-1.18.2-1.17.0.8.jar
[04Feb2023 21:43:39.062] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file carryon-1.18.2-1.17.0.8.jar with {carryon} mods — versions {1.17.0.8}
[04Feb2023 21:43:39.068] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscc-tweaked-1.18.2-1.101.0.jar
[04Feb2023 21:43:39.069] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cc-tweaked-1.18.2-1.101.0.jar with {computercraft} mods — versions {1.101.0}
[04Feb2023 21:43:39.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscfm-7.0.0-pre35-1.18.2.jar
[04Feb2023 21:43:39.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cfm-7.0.0-pre35-1.18.2.jar with {cfm} mods — versions {7.0.0-pre35}
[04Feb2023 21:43:39.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsChiselsBits-forge-1.18.2-1.2.116-universal.jar
[04Feb2023 21:43:39.083] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ChiselsBits-forge-1.18.2-1.2.116-universal.jar with {chiselsandbits} mods — versions {1.2.116}
[04Feb2023 21:43:39.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscitadel-1.11.3-1.18.2.jar
[04Feb2023 21:43:39.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file citadel-1.11.3-1.18.2.jar with {citadel} mods — versions {1.11.3}
[04Feb2023 21:43:39.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscloth-config-6.4.90-forge.jar
[04Feb2023 21:43:39.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cloth-config-6.4.90-forge.jar with {cloth_config} mods — versions {6.4.90}
[04Feb2023 21:43:39.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsClumps-forge-1.18.2-8.0.0+17.jar
[04Feb2023 21:43:39.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Clumps-forge-1.18.2-8.0.0+17.jar with {clumps} mods — versions {8.0.0+17}
[04Feb2023 21:43:39.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCodeChickenLib-1.18.2-4.1.3.480-universal.jar
[04Feb2023 21:43:39.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CodeChickenLib-1.18.2-4.1.3.480-universal.jar with {codechickenlib} mods — versions {4.1.3.480}
[04Feb2023 21:43:39.138] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscofh_core-1.18.2-9.1.2.32.jar
[04Feb2023 21:43:39.144] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cofh_core-1.18.2-9.1.2.32.jar with {cofh_core} mods — versions {9.1.2.32}
[04Feb2023 21:43:39.149] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscollective-1.18.2-6.43.jar
[04Feb2023 21:43:39.150] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file collective-1.18.2-6.43.jar with {collective} mods — versions {6.43}
[04Feb2023 21:43:39.158] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscomforts-forge-1.18.2-5.0.0.5.jar
[04Feb2023 21:43:39.159] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file comforts-forge-1.18.2-5.0.0.5.jar with {comforts} mods — versions {1.18.2-5.0.0.5}
[04Feb2023 21:43:39.167] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCommonCapabilities-1.18.2-2.8.2.jar
[04Feb2023 21:43:39.172] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CommonCapabilities-1.18.2-2.8.2.jar with {commoncapabilities} mods — versions {2.8.2}
[04Feb2023 21:43:39.177] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscompactmachines-4.5.0.jar
[04Feb2023 21:43:39.178] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file compactmachines-4.5.0.jar with {compactmachines} mods — versions {4.5.0}
[04Feb2023 21:43:39.189] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsconfigured-2.0.0-1.18.2.jar
[04Feb2023 21:43:39.193] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file configured-2.0.0-1.18.2.jar with {configured} mods — versions {2.0.0}
[04Feb2023 21:43:39.197] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsconnectivity-1.18.2-3.2.jar
[04Feb2023 21:43:39.199] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file connectivity-1.18.2-3.2.jar with {connectivity} mods — versions {1.18.2-3.2}
[04Feb2023 21:43:39.211] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsconstructionwand-1.18.2-2.7.jar
[04Feb2023 21:43:39.212] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file constructionwand-1.18.2-2.7.jar with {constructionwand} mods — versions {1.18.2-2.7}
[04Feb2023 21:43:39.219] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsControlling-forge-1.18.2-9.0+22.jar
[04Feb2023 21:43:39.221] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Controlling-forge-1.18.2-9.0+22.jar with {controlling} mods — versions {9.0+22}
[04Feb2023 21:43:39.227] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscookingforblockheads-forge-1.18.2-12.2.0.jar
[04Feb2023 21:43:39.228] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cookingforblockheads-forge-1.18.2-12.2.0.jar with {cookingforblockheads} mods — versions {12.2.0}
[04Feb2023 21:43:39.235] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCosmeticArmorReworked-1.18.2-v2a.jar
[04Feb2023 21:43:39.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CosmeticArmorReworked-1.18.2-v2a.jar with {cosmeticarmorreworked} mods — versions {1.18.2-v2a}
[04Feb2023 21:43:39.259] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscraftingtweaks-forge-1.18.2-14.0.3.jar
[04Feb2023 21:43:39.260] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file craftingtweaks-forge-1.18.2-14.0.3.jar with {craftingtweaks} mods — versions {14.0.3}
[04Feb2023 21:43:39.265] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCraftTweaker-forge-1.18.2-9.1.203.jar
[04Feb2023 21:43:39.266] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CraftTweaker-forge-1.18.2-9.1.203.jar with {crafttweaker} mods — versions {9.1.203}
[04Feb2023 21:43:39.270] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscrashutilities-4.1.jar
[04Feb2023 21:43:39.272] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file crashutilities-4.1.jar with {crashutilities} mods — versions {4.1}
[04Feb2023 21:43:39.278] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCTM-1.18.2-1.1.5+5.jar
[04Feb2023 21:43:39.280] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CTM-1.18.2-1.1.5+5.jar with {ctm} mods — versions {1.18.2-1.1.5+5}
[04Feb2023 21:43:39.286] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCucumber-1.18.2-5.1.3.jar
[04Feb2023 21:43:39.287] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cucumber-1.18.2-5.1.3.jar with {cucumber} mods — versions {5.1.3}
[04Feb2023 21:43:39.293] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscurios-forge-1.18.2-5.0.7.1.jar
[04Feb2023 21:43:39.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file curios-forge-1.18.2-5.0.7.1.jar with {curios} mods — versions {1.18.2-5.0.7.1}
[04Feb2023 21:43:39.303] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodscuriouselytra-forge-1.18.1-5.0.1.0.jar
[04Feb2023 21:43:39.305] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file curiouselytra-forge-1.18.1-5.0.1.0.jar with {curiouselytra} mods — versions {1.18.1-5.0.1.0}
[04Feb2023 21:43:39.310] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsCyclopsCore-1.18.2-1.16.2.jar
[04Feb2023 21:43:39.311] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CyclopsCore-1.18.2-1.16.2.jar with {cyclopscore} mods — versions {1.16.2}
[04Feb2023 21:43:39.316] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsDecorative Blocks-forge-1.18.2-2.1.2.jar
[04Feb2023 21:43:39.317] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Decorative Blocks-forge-1.18.2-2.1.2.jar with {decorative_blocks} mods — versions {2.1.2}
[04Feb2023 21:43:39.323] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsdefaultoptions-forge-1.18.2-14.1.1.jar
[04Feb2023 21:43:39.324] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file defaultoptions-forge-1.18.2-14.1.1.jar with {defaultoptions} mods — versions {14.1.1}
[04Feb2023 21:43:39.328] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsDungeonCrawl-1.18.2-2.3.10.jar
[04Feb2023 21:43:39.329] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonCrawl-1.18.2-2.3.10.jar with {dungeoncrawl} mods — versions {2.3.10}
[04Feb2023 21:43:39.338] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsDungeonsArise-1.18.2-2.1.52-release.jar
[04Feb2023 21:43:39.342] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsArise-1.18.2-2.1.52-release.jar with {dungeons_arise} mods — versions {2.1.52-1.18.2}
[04Feb2023 21:43:39.353] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsecologics-forge-1.18.2-1.7.11.jar
[04Feb2023 21:43:39.356] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ecologics-forge-1.18.2-1.7.11.jar with {ecologics} mods — versions {1.7.11}
[04Feb2023 21:43:39.361] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodselevatorid-1.18.2-1.8.4.jar
[04Feb2023 21:43:39.363] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file elevatorid-1.18.2-1.8.4.jar with {elevatorid} mods — versions {1.18.2-1.8.4}
[04Feb2023 21:43:39.374] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsEnchantmentDescriptions-Forge-1.18.2-10.0.12.jar
[04Feb2023 21:43:39.385] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EnchantmentDescriptions-Forge-1.18.2-10.0.12.jar with {enchdesc} mods — versions {10.0.12}
[04Feb2023 21:43:39.399] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsEnderStorage-1.18.2-2.9.0.182-universal.jar
[04Feb2023 21:43:39.400] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EnderStorage-1.18.2-2.9.0.182-universal.jar with {enderstorage} mods — versions {2.9.0.182}
[04Feb2023 21:43:39.442] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsengineersdecor-1.18.2-1.1.28.jar
[04Feb2023 21:43:39.443] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file engineersdecor-1.18.2-1.1.28.jar with {engineersdecor} mods — versions {1.1.28}
[04Feb2023 21:43:39.446] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsentityculling-forge-mc1.18-1.5.1.jar
[04Feb2023 21:43:39.447] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file entityculling-forge-mc1.18-1.5.1.jar with {entityculling} mods — versions {1.5.1}
[04Feb2023 21:43:39.451] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsexpandability-6.0.0.jar
[04Feb2023 21:43:39.453] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file expandability-6.0.0.jar with {expandability} mods — versions {6.0.0}
[04Feb2023 21:43:39.456] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsextremesoundmuffler-3.30_forge-1.18.2.jar
[04Feb2023 21:43:39.457] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file extremesoundmuffler-3.30_forge-1.18.2.jar with {extremesoundmuffler} mods — versions {3.31_forge-1.18.2}
[04Feb2023 21:43:39.462] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsfancymenu_forge_2.13.3_MC_1.18.2.jar
[04Feb2023 21:43:39.464] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fancymenu_forge_2.13.3_MC_1.18.2.jar with {fancymenu} mods — versions {2.13.3}
[04Feb2023 21:43:39.469] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsFarmersDelight-1.18.2-1.2.0.jar
[04Feb2023 21:43:39.470] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FarmersDelight-1.18.2-1.2.0.jar with {farmersdelight} mods — versions {1.18.2-1.2.0}
[04Feb2023 21:43:39.474] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsfarmingforblockheads-forge-1.18.2-10.0.2.jar
[04Feb2023 21:43:39.476] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file farmingforblockheads-forge-1.18.2-10.0.2.jar with {farmingforblockheads} mods — versions {10.0.2}
[04Feb2023 21:43:39.479] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsFastFurnace-1.18.2-6.0.3.jar
[04Feb2023 21:43:39.480] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastFurnace-1.18.2-6.0.3.jar with {fastfurnace} mods — versions {6.0.3}
[04Feb2023 21:43:39.484] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsFastLeafDecay-28.jar
[04Feb2023 21:43:39.485] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastLeafDecay-28.jar with {fastleafdecay} mods — versions {28}
[04Feb2023 21:43:39.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsFastWorkbench-1.18.2-6.1.1.jar
[04Feb2023 21:43:39.491] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FastWorkbench-1.18.2-6.1.1.jar with {fastbench} mods — versions {6.1.1}
[04Feb2023 21:43:39.496] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsfeature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.jar
[04Feb2023 21:43:39.497] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file feature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.jar with {feature_nbt_deadlock_be_gone} mods — versions {2.0.0+1.18.2}
[04Feb2023 21:43:39.503] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsferritecore-4.2.2-forge.jar
[04Feb2023 21:43:39.504] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ferritecore-4.2.2-forge.jar with {ferritecore} mods — versions {4.2.2}
[04Feb2023 21:43:39.509] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsfindme-3.0.6-forge.jar
[04Feb2023 21:43:39.510] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file findme-3.0.6-forge.jar with {findme} mods — versions {3.0.6}
[04Feb2023 21:43:39.514] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsFluxNetworks-1.18.2-7.0.8.12.jar
[04Feb2023 21:43:39.515] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FluxNetworks-1.18.2-7.0.8.12.jar with {fluxnetworks} mods — versions {7.0.8.12}
[04Feb2023 21:43:39.524] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsflywheel-forge-1.18.2-0.6.8.a.jar
[04Feb2023 21:43:39.525] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file flywheel-forge-1.18.2-0.6.8.a.jar with {flywheel} mods — versions {0.6.8.a}
[04Feb2023 21:43:39.530] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsFramedBlocks-5.10.0.jar
[04Feb2023 21:43:39.531] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FramedBlocks-5.10.0.jar with {framedblocks} mods — versions {5.10.0}
[04Feb2023 21:43:39.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftb-chunks-forge-1802.3.13-build.234.jar
[04Feb2023 21:43:39.537] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftb-chunks-forge-1802.3.13-build.234.jar with {ftbchunks} mods — versions {1802.3.13-build.234}
[04Feb2023 21:43:39.541] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftb-essentials-1802.1.7-build.42.jar
[04Feb2023 21:43:39.543] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftb-essentials-1802.1.7-build.42.jar with {ftbessentials} mods — versions {1802.1.7-build.42}
[04Feb2023 21:43:39.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftb-library-forge-1802.3.9-build.167.jar
[04Feb2023 21:43:39.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftb-library-forge-1802.3.9-build.167.jar with {ftblibrary} mods — versions {1802.3.9-build.167}
[04Feb2023 21:43:39.553] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftb-quests-forge-1802.3.13-build.175.jar
[04Feb2023 21:43:39.556] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftb-quests-forge-1802.3.13-build.175.jar with {ftbquests} mods — versions {1802.3.13-build.175}
[04Feb2023 21:43:39.563] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftb-teams-forge-1802.2.10-build.96.jar
[04Feb2023 21:43:39.564] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftb-teams-forge-1802.2.10-build.96.jar with {ftbteams} mods — versions {1802.2.10-build.96}
[04Feb2023 21:43:39.576] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftb-ultimine-forge-1802.3.3-build.70.jar
[04Feb2023 21:43:39.576] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftb-ultimine-forge-1802.3.3-build.70.jar with {ftbultimine} mods — versions {1802.3.3-build.70}
[04Feb2023 21:43:39.584] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsftbbackups2-forge-1.18.2-1.0.17.jar
[04Feb2023 21:43:39.585] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ftbbackups2-forge-1.18.2-1.0.17.jar with {ftbbackups2} mods — versions {1.0.17}
[04Feb2023 21:43:39.590] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsgeckolib-forge-1.18-3.0.57.jar
[04Feb2023 21:43:39.591] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.18-3.0.57.jar with {geckolib3} mods — versions {3.0.57}
[04Feb2023 21:43:39.596] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsguardvillagers-1.18.2.1.4.3.jar
[04Feb2023 21:43:39.596] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file guardvillagers-1.18.2.1.4.3.jar with {guardvillagers} mods — versions {1.4.3}
[04Feb2023 21:43:39.600] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsIceberg-1.18.2-forge-1.0.49.jar
[04Feb2023 21:43:39.600] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Iceberg-1.18.2-forge-1.0.49.jar with {iceberg} mods — versions {1.0.49}
[04Feb2023 21:43:39.606] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsincubation-1.18.2-2.0.2.jar
[04Feb2023 21:43:39.606] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file incubation-1.18.2-2.0.2.jar with {incubation} mods — versions {2.0.2}
[04Feb2023 21:43:39.612] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsindustrial-foregoing-1.18.2-3.3.1.5-9.jar
[04Feb2023 21:43:39.613] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file industrial-foregoing-1.18.2-3.3.1.5-9.jar with {industrialforegoing} mods — versions {3.3.1.5}
[04Feb2023 21:43:39.622] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsIntegratedDynamics-1.18.2-1.12.5.jar
[04Feb2023 21:43:39.624] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file IntegratedDynamics-1.18.2-1.12.5.jar with {integrateddynamics,integrateddynamicscompat} mods — versions {1.12.5,1.12.5}
[04Feb2023 21:43:39.635] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsIntegratedTunnels-1.18.2-1.8.17.jar
[04Feb2023 21:43:39.638] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file IntegratedTunnels-1.18.2-1.8.17.jar with {integratedtunnels,integratedtunnelscompat} mods — versions {1.8.17,1.8.17}
[04Feb2023 21:43:39.643] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsInventoryHud_[1.18].forge-3.4.4.jar
[04Feb2023 21:43:39.644] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file InventoryHud_[1.18].forge-3.4.4.jar with {inventoryhud} mods — versions {3.4.4}
[04Feb2023 21:43:39.649] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsinventorysorter-1.18-19.0.0.jar
[04Feb2023 21:43:39.651] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file inventorysorter-1.18-19.0.0.jar with {inventorysorter} mods — versions {19.0.0}
[04Feb2023 21:43:39.662] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsironchest-1.18.2-13.2.11.jar
[04Feb2023 21:43:39.663] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.18.2-13.2.11.jar with {ironchest} mods — versions {1.18.2-13.2.11}
[04Feb2023 21:43:39.669] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsironfurnaces-1.18.2-3.3.3.jar
[04Feb2023 21:43:39.672] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironfurnaces-1.18.2-3.3.3.jar with {ironfurnaces} mods — versions {3.3.3}
[04Feb2023 21:43:39.676] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsitem-filters-forge-1802.2.8-build.47.jar
[04Feb2023 21:43:39.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file item-filters-forge-1802.2.8-build.47.jar with {itemfilters} mods — versions {1802.2.8-build.47}
[04Feb2023 21:43:39.681] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsJade-1.18.2-forge-5.2.6.jar
[04Feb2023 21:43:39.682] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Jade-1.18.2-forge-5.2.6.jar with {jade,waila} mods — versions {5.2.6,5.2.6}
[04Feb2023 21:43:39.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsjei-1.18.2-9.7.1.255.jar
[04Feb2023 21:43:39.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jei-1.18.2-9.7.1.255.jar with {jei} mods — versions {9.7.1.255}
[04Feb2023 21:43:39.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsjeiintegration_1.18.2-9.0.0.37.jar
[04Feb2023 21:43:39.700] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jeiintegration_1.18.2-9.0.0.37.jar with {jeiintegration} mods — versions {9.0.0.37}
[04Feb2023 21:43:39.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsJEITweaker-1.18.2-3.0.0.9.jar
[04Feb2023 21:43:39.709] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file JEITweaker-1.18.2-3.0.0.9.jar with {jeitweaker} mods — versions {3.0.0.9}
[04Feb2023 21:43:39.717] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsjourneymap-1.18.2-5.9.2-forge.jar
[04Feb2023 21:43:39.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file journeymap-1.18.2-5.9.2-forge.jar with {journeymap} mods — versions {5.9.2}
[04Feb2023 21:43:39.723] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsJustEnoughProfessions-1.18.2-1.3.0.jar
[04Feb2023 21:43:39.725] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file JustEnoughProfessions-1.18.2-1.3.0.jar with {justenoughprofessions} mods — versions {1.3.0}
[04Feb2023 21:43:39.729] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsJustEnoughResources-1.18.2-0.14.1.171.jar
[04Feb2023 21:43:39.730] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file JustEnoughResources-1.18.2-0.14.1.171.jar with {jeresources} mods — versions {0.14.1.171}
[04Feb2023 21:43:39.738] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodskleeslabs-forge-1.18.2-11.1.1.jar
[04Feb2023 21:43:39.738] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kleeslabs-forge-1.18.2-11.1.1.jar with {kleeslabs} mods — versions {11.1.1}
[04Feb2023 21:43:39.744] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodskonkrete_forge_1.6.0_MC_1.18-1.18.2.jar
[04Feb2023 21:43:39.745] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file konkrete_forge_1.6.0_MC_1.18-1.18.2.jar with {konkrete} mods — versions {1.6.0}
[04Feb2023 21:43:39.885] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodskubejs-forge-1802.5.5-build.569.jar
[04Feb2023 21:43:39.886] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kubejs-forge-1802.5.5-build.569.jar with {kubejs} mods — versions {1802.5.5-build.569}
[04Feb2023 21:43:39.891] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsLegendaryTooltips-1.18.2-1.3.1.jar
[04Feb2023 21:43:39.891] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file LegendaryTooltips-1.18.2-1.3.1.jar with {legendarytooltips} mods — versions {1.3.1}
[04Feb2023 21:43:39.896] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsLibX-1.18.2-3.2.18.jar
[04Feb2023 21:43:39.896] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file LibX-1.18.2-3.2.18.jar with {libx} mods — versions {1.18.2-3.2.18}
[04Feb2023 21:43:39.904] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodslootr-1.18.2-0.2.23.60.jar
[04Feb2023 21:43:39.905] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file lootr-1.18.2-0.2.23.60.jar with {lootr} mods — versions {0.2.21.58}
[04Feb2023 21:43:39.909] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMantle-1.18.2-1.9.43.jar
[04Feb2023 21:43:39.910] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Mantle-1.18.2-1.9.43.jar with {mantle} mods — versions {1.9.43}
[04Feb2023 21:43:39.914] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcjtylib-1.18-6.0.20.jar
[04Feb2023 21:43:39.915] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcjtylib-1.18-6.0.20.jar with {mcjtylib} mods — versions {1.18-6.0.20}
[04Feb2023 21:43:39.920] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-bridges-2.0.6-mc1.18.2forge.jar
[04Feb2023 21:43:39.921] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-bridges-2.0.6-mc1.18.2forge.jar with {mcwbridges} mods — versions {2.0.6}
[04Feb2023 21:43:39.927] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-doors-1.0.7-mc1.18.2.jar
[04Feb2023 21:43:39.930] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-doors-1.0.7-mc1.18.2.jar with {mcwdoors} mods — versions {1.0.7}
[04Feb2023 21:43:39.934] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-fences-1.0.7-mc1.18.2forge.jar
[04Feb2023 21:43:39.934] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-fences-1.0.7-mc1.18.2forge.jar with {mcwfences} mods — versions {1.0.7}
[04Feb2023 21:43:39.941] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-lights-1.0.5-mc1.18.2forge.jar
[04Feb2023 21:43:39.941] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-lights-1.0.5-mc1.18.2forge.jar with {mcwlights} mods — versions {1.0.5}
[04Feb2023 21:43:39.947] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-roofs-2.2.2-mc1.18.2forge.jar
[04Feb2023 21:43:39.948] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-roofs-2.2.2-mc1.18.2forge.jar with {mcwroofs} mods — versions {2.2.2}
[04Feb2023 21:43:39.953] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-trapdoors-1.0.8-mc1.18.2forge.jar
[04Feb2023 21:43:39.953] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-trapdoors-1.0.8-mc1.18.2forge.jar with {mcwtrpdoors} mods — versions {1.0.8}
[04Feb2023 21:43:39.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmcw-windows-2.1.1-mc1.18.2forge.jar
[04Feb2023 21:43:39.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-windows-2.1.1-mc1.18.2forge.jar with {mcwwindows} mods — versions {2.1.1}
[04Feb2023 21:43:39.967] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMekanism-1.18.2-10.2.5.465.jar
[04Feb2023 21:43:39.969] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Mekanism-1.18.2-10.2.5.465.jar with {mekanism} mods — versions {10.2.5}
[04Feb2023 21:43:39.977] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMekanismGenerators-1.18.2-10.2.5.465.jar
[04Feb2023 21:43:39.978] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MekanismGenerators-1.18.2-10.2.5.465.jar with {mekanismgenerators} mods — versions {10.2.5}
[04Feb2023 21:43:39.987] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMekanismTools-1.18.2-10.2.5.465.jar
[04Feb2023 21:43:39.988] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MekanismTools-1.18.2-10.2.5.465.jar with {mekanismtools} mods — versions {10.2.5}
[04Feb2023 21:43:39.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmininggadgets-1.11.1.jar
[04Feb2023 21:43:39.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mininggadgets-1.11.1.jar with {mininggadgets} mods — versions {1.11.1}
[04Feb2023 21:43:39.996] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsmodnametooltip-1.18.1-1.18.0.jar
[04Feb2023 21:43:39.998] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file modnametooltip-1.18.1-1.18.0.jar with {modnametooltip} mods — versions {1.18.0}
[04Feb2023 21:43:40.002] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMouseTweaks-forge-mc1.18-2.21.jar
[04Feb2023 21:43:40.003] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MouseTweaks-forge-mc1.18-2.21.jar with {mousetweaks} mods — versions {2.21}
[04Feb2023 21:43:40.007] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMysticalAgradditions-1.18.2-5.1.3.jar
[04Feb2023 21:43:40.010] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MysticalAgradditions-1.18.2-5.1.3.jar with {mysticalagradditions} mods — versions {5.1.3}
[04Feb2023 21:43:40.016] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsMysticalAgriculture-1.18.2-5.1.3.jar
[04Feb2023 21:43:40.016] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file MysticalAgriculture-1.18.2-5.1.3.jar with {mysticalagriculture} mods — versions {5.1.3}
[04Feb2023 21:43:40.021] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsnaturalist-forge-1.1.1-1.18.2.jar
[04Feb2023 21:43:40.022] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file naturalist-forge-1.1.1-1.18.2.jar with {naturalist} mods — versions {1.1.1}
[04Feb2023 21:43:40.026] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsNaturesCompass-1.18.2-1.9.7-forge.jar
[04Feb2023 21:43:40.027] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file NaturesCompass-1.18.2-1.9.7-forge.jar with {naturescompass} mods — versions {1.18.2-1.9.7-forge}
[04Feb2023 21:43:40.030] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsNeat-1.8-31.jar
[04Feb2023 21:43:40.031] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Neat-1.8-31.jar with {neat} mods — versions {1.8-31}
[04Feb2023 21:43:40.034] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsnetherportalfix-forge-1.18-9.0.0.jar
[04Feb2023 21:43:40.036] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file netherportalfix-forge-1.18-9.0.0.jar with {netherportalfix} mods — versions {9.0.0}
[04Feb2023 21:43:40.041] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsnotenoughanimations-forge-1.6.0-mc1.18.2.jar
[04Feb2023 21:43:40.042] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file notenoughanimations-forge-1.6.0-mc1.18.2.jar with {notenoughanimations} mods — versions {1.6.0}
[04Feb2023 21:43:40.046] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsoculus-1.4.3a.jar
[04Feb2023 21:43:40.047] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file oculus-1.4.3a.jar with {oculus} mods — versions {1.4.3a}
[04Feb2023 21:43:40.053] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsOh_The_Biomes_You’ll_Go-forge-1.18.2-1.4.7.jar
[04Feb2023 21:43:40.054] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Oh_The_Biomes_You’ll_Go-forge-1.18.2-1.4.7.jar with {byg} mods — versions {1.4}
[04Feb2023 21:43:40.058] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsPatchouli-1.18.2-71.1.jar
[04Feb2023 21:43:40.059] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Patchouli-1.18.2-71.1.jar with {patchouli} mods — versions {1.18.2-71.1}
[04Feb2023 21:43:40.062] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsPigPen-Forge-1.18.2-8.0.1.jar
[04Feb2023 21:43:40.063] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PigPen-Forge-1.18.2-8.0.1.jar with {pigpen} mods — versions {8.0.1}
[04Feb2023 21:43:40.066] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodspipez-1.18.2-1.1.5.jar
[04Feb2023 21:43:40.067] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file pipez-1.18.2-1.1.5.jar with {pipez} mods — versions {1.18.2-1.1.5}
[04Feb2023 21:43:40.070] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsPlacebo-1.18.2-6.6.6.jar
[04Feb2023 21:43:40.071] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Placebo-1.18.2-6.6.6.jar with {placebo} mods — versions {6.6.6}
[04Feb2023 21:43:40.074] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodspolylib-forge-1801.0.2-build.13.jar
[04Feb2023 21:43:40.075] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file polylib-forge-1801.0.2-build.13.jar with {polylib} mods — versions {1801.0.2-build.13}
[04Feb2023 21:43:40.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodspolymorph-forge-1.18.2-0.46.jar
[04Feb2023 21:43:40.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file polymorph-forge-1.18.2-0.46.jar with {polymorph} mods — versions {1.18.2-0.46}
[04Feb2023 21:43:40.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsPowah-3.0.7.jar
[04Feb2023 21:43:40.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Powah-3.0.7.jar with {powah} mods — versions {3.0.7}
[04Feb2023 21:43:40.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsPrism-1.18.2-1.0.1.jar
[04Feb2023 21:43:40.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Prism-1.18.2-1.0.1.jar with {prism} mods — versions {1.0.1}
[04Feb2023 21:43:40.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsProjectE-1.18.2-PE1.0.1.jar
[04Feb2023 21:43:40.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ProjectE-1.18.2-PE1.0.1.jar with {projecte} mods — versions {1.0.1}
[04Feb2023 21:43:40.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsPuzzlesLib-v3.3.5-1.18.2-Forge.jar
[04Feb2023 21:43:40.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PuzzlesLib-v3.3.5-1.18.2-Forge.jar with {puzzleslib} mods — versions {3.3.5}
[04Feb2023 21:43:40.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsQuark-3.2-358.jar
[04Feb2023 21:43:40.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Quark-3.2-358.jar with {quark} mods — versions {3.2-358}
[04Feb2023 21:43:40.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsReAuth-1.18-Forge-4.0.6.jar
[04Feb2023 21:43:40.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ReAuth-1.18-Forge-4.0.6.jar with {reauth} mods — versions {4.0.6}
[04Feb2023 21:43:40.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrefinedstorage-1.10.4.jar
[04Feb2023 21:43:40.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file refinedstorage-1.10.4.jar with {refinedstorage} mods — versions {1.10.4}
[04Feb2023 21:43:40.126] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrefinedstorageaddons-0.8.2.jar
[04Feb2023 21:43:40.127] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file refinedstorageaddons-0.8.2.jar with {refinedstorageaddons} mods — versions {0.8.2}
[04Feb2023 21:43:40.131] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsREIPluginCompatibilities-forge-8.0.42.jar
[04Feb2023 21:43:40.132] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file REIPluginCompatibilities-forge-8.0.42.jar with {rei_plugin_compatibilities,jei} mods — versions {8.0.42,9.9999}
[04Feb2023 21:43:40.136] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsreliquary-1.18.2-2.0.19.1161.jar
[04Feb2023 21:43:40.136] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file reliquary-1.18.2-2.0.19.1161.jar with {reliquary} mods — versions {1.18.2-2.0.19.1161}
[04Feb2023 21:43:40.142] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrepurposed_structures_forge-5.1.14+1.18.2.jar
[04Feb2023 21:43:40.142] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file repurposed_structures_forge-5.1.14+1.18.2.jar with {repurposed_structures} mods — versions {5.1.14+1.18.2}
[04Feb2023 21:43:40.146] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrftoolsbase-1.18-3.0.12.jar
[04Feb2023 21:43:40.150] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rftoolsbase-1.18-3.0.12.jar with {rftoolsbase} mods — versions {1.18-3.0.12}
[04Feb2023 21:43:40.163] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrftoolsbuilder-1.18-4.1.1.jar
[04Feb2023 21:43:40.165] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rftoolsbuilder-1.18-4.1.1.jar with {rftoolsbuilder} mods — versions {1.18-4.1.1}
[04Feb2023 21:43:40.169] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrftoolspower-1.18-4.0.9.jar
[04Feb2023 21:43:40.170] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rftoolspower-1.18-4.0.9.jar with {rftoolspower} mods — versions {1.18-4.0.9}
[04Feb2023 21:43:40.175] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrftoolsutility-1.18-4.0.22.jar
[04Feb2023 21:43:40.176] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rftoolsutility-1.18-4.0.22.jar with {rftoolsutility} mods — versions {1.18-4.0.22}
[04Feb2023 21:43:40.180] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrhino-forge-1802.2.1-build.255.jar
[04Feb2023 21:43:40.181] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rhino-forge-1802.2.1-build.255.jar with {rhino} mods — versions {1802.2.1-build.255}
[04Feb2023 21:43:40.185] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsRoughlyEnoughItems-8.3.588.jar
[04Feb2023 21:43:40.186] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file RoughlyEnoughItems-8.3.588.jar with {roughlyenoughitems} mods — versions {8.3.588}
[04Feb2023 21:43:40.191] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrsrequestify-2.2.0.jar
[04Feb2023 21:43:40.192] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rsrequestify-2.2.0.jar with {rsrequestify} mods — versions {2.2.0}
[04Feb2023 21:43:40.196] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsrubidium-0.5.4.jar
[04Feb2023 21:43:40.197] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rubidium-0.5.4.jar with {rubidium} mods — versions {0.5.4}
[04Feb2023 21:43:40.204] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsRunelic-Forge-1.18.2-11.0.1.jar
[04Feb2023 21:43:40.205] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Runelic-Forge-1.18.2-11.0.1.jar with {runelic} mods — versions {11.0.1}
[04Feb2023 21:43:40.262] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsselene-1.18.2-1.17.9.jar
[04Feb2023 21:43:40.262] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file selene-1.18.2-1.17.9.jar with {selene} mods — versions {1.18.2-1.17.9}
[04Feb2023 21:43:40.266] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsshetiphiancore-1.18-3.10.12.jar
[04Feb2023 21:43:40.266] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file shetiphiancore-1.18-3.10.12.jar with {shetiphiancore} mods — versions {3.10.12}
[04Feb2023 21:43:40.272] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodssilent-lib-1.18.2-6.2.0.jar
[04Feb2023 21:43:40.273] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file silent-lib-1.18.2-6.2.0.jar with {silentlib} mods — versions {6.2.0}
[04Feb2023 21:43:40.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsSimpleDiscordRichPresence-forge-3.0.4-build.28+mc1.18.2.jar
[04Feb2023 21:43:40.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file SimpleDiscordRichPresence-forge-3.0.4-build.28+mc1.18.2.jar with {sdrp} mods — versions {3.0.4-build.28+mc1.18.2}
[04Feb2023 21:43:40.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsSimpleStorageNetwork-1.18.2-1.6.2.jar
[04Feb2023 21:43:40.296] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file SimpleStorageNetwork-1.18.2-1.6.2.jar with {storagenetwork} mods — versions {1.18.2-1.6.2}
[04Feb2023 21:43:40.301] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodssimplylight-1.18.2-1.4.5-build.43.jar
[04Feb2023 21:43:40.301] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file simplylight-1.18.2-1.4.5-build.43.jar with {simplylight} mods — versions {1.18.2-1.4.5-build.43}
[04Feb2023 21:43:40.308] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsSnad-1.18.2-1.22.04.15a.jar
[04Feb2023 21:43:40.309] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Snad-1.18.2-1.22.04.15a.jar with {snad} mods — versions {1.18.2-1.22.04.15a}
[04Feb2023 21:43:40.312] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsSoL-Carrot-1.18.1-1.12.0.jar
[04Feb2023 21:43:40.313] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file SoL-Carrot-1.18.1-1.12.0.jar with {solcarrot} mods — versions {1.18.1-1.12.0}
[04Feb2023 21:43:40.316] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodssophisticatedbackpacks-1.18.2-3.18.40.777.jar
[04Feb2023 21:43:40.317] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sophisticatedbackpacks-1.18.2-3.18.40.777.jar with {sophisticatedbackpacks} mods — versions {1.18.2-3.18.40.777}
[04Feb2023 21:43:40.321] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodssophisticatedcore-1.18.2-0.5.37.202.jar
[04Feb2023 21:43:40.322] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sophisticatedcore-1.18.2-0.5.37.202.jar with {sophisticatedcore} mods — versions {1.18.2-0.5.37.202}
[04Feb2023 21:43:40.326] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsspark-1.9.11-forge.jar
[04Feb2023 21:43:40.326] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file spark-1.9.11-forge.jar with {spark} mods — versions {1.9.11}
[04Feb2023 21:43:40.329] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsspirit-forge-1.18.2-2.1.8.jar
[04Feb2023 21:43:40.330] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file spirit-forge-1.18.2-2.1.8.jar with {spirit} mods — versions {2.1.8}
[04Feb2023 21:43:40.334] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsStorageDrawers-1.18.2-10.2.1.jar
[04Feb2023 21:43:40.334] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file StorageDrawers-1.18.2-10.2.1.jar with {storagedrawers} mods — versions {10.2.1}
[04Feb2023 21:43:40.338] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsstructure_gel-1.18.2-2.4.7.jar
[04Feb2023 21:43:40.338] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file structure_gel-1.18.2-2.4.7.jar with {structure_gel} mods — versions {2.4.7}
[04Feb2023 21:43:40.343] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsstructurize-1.18.2-1.0.399-RELEASE.jar
[04Feb2023 21:43:40.344] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file structurize-1.18.2-1.0.399-RELEASE.jar with {structurize} mods — versions {1.18.2-1.0.399-RELEASE}
[04Feb2023 21:43:40.351] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodssupermartijn642configlib-1.1.6-forge-mc1.18.jar
[04Feb2023 21:43:40.351] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supermartijn642configlib-1.1.6-forge-mc1.18.jar with {supermartijn642configlib} mods — versions {1.1.6}
[04Feb2023 21:43:40.359] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodssupplementaries-1.18.2-1.5.15.jar
[04Feb2023 21:43:40.360] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supplementaries-1.18.2-1.5.15.jar with {supplementaries} mods — versions {1.18.2-1.5.15}
[04Feb2023 21:43:40.364] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsswingthroughgrass-1.18.2-1.9.1.jar
[04Feb2023 21:43:40.364] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file swingthroughgrass-1.18.2-1.9.1.jar with {swingthroughgrass} mods — versions {1.18.2-1.9.1}
[04Feb2023 21:43:40.379] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsTConstruct-1.18.2-3.6.2.92.jar
[04Feb2023 21:43:40.379] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file TConstruct-1.18.2-3.6.2.92.jar with {tconstruct} mods — versions {3.6.2.92}
[04Feb2023 21:43:40.383] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsTerraBlender-forge-1.18.2-1.2.0.126.jar
[04Feb2023 21:43:40.383] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file TerraBlender-forge-1.18.2-1.2.0.126.jar with {terrablender} mods — versions {1.2.0.126}
[04Feb2023 21:43:40.387] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodstheoneprobe-1.18-5.1.2.jar
[04Feb2023 21:43:40.387] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file theoneprobe-1.18-5.1.2.jar with {theoneprobe} mods — versions {1.18-5.1.2}
[04Feb2023 21:43:40.398] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsthermal_cultivation-1.18.2-9.1.0.14.jar
[04Feb2023 21:43:40.398] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file thermal_cultivation-1.18.2-9.1.0.14.jar with {thermal_cultivation} mods — versions {9.1.0.14}
[04Feb2023 21:43:40.411] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsthermal_expansion-1.18.2-9.1.0.18.jar
[04Feb2023 21:43:40.412] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file thermal_expansion-1.18.2-9.1.0.18.jar with {thermal_expansion} mods — versions {9.1.0.18}
[04Feb2023 21:43:40.440] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsthermal_foundation-1.18.2-9.1.0.34.jar
[04Feb2023 21:43:40.440] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file thermal_foundation-1.18.2-9.1.0.34.jar with {thermal,thermal_foundation} mods — versions {9.1.0.34,9.1.0.34}
[04Feb2023 21:43:40.455] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsthermal_innovation-1.18.2-9.1.0.15.jar
[04Feb2023 21:43:40.456] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file thermal_innovation-1.18.2-9.1.0.15.jar with {thermal_innovation} mods — versions {9.1.0.15}
[04Feb2023 21:43:40.463] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsTips-Forge-1.18.2-5.0.11.jar
[04Feb2023 21:43:40.464] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Tips-Forge-1.18.2-5.0.11.jar with {tipsmod} mods — versions {5.0.11}
[04Feb2023 21:43:40.467] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodstitanium-1.18.2-3.5.7-39.jar
[04Feb2023 21:43:40.468] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file titanium-1.18.2-3.5.7-39.jar with {titanium} mods — versions {3.5.7}
[04Feb2023 21:43:40.473] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodstombstone-7.6.1-1.18.2.jar
[04Feb2023 21:43:40.474] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tombstone-7.6.1-1.18.2.jar with {tombstone} mods — versions {7.6.1}
[04Feb2023 21:43:40.477] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsToolBelt-1.18.2-1.18.9.jar
[04Feb2023 21:43:40.477] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ToolBelt-1.18.2-1.18.9.jar with {toolbelt} mods — versions {1.18.9}
[04Feb2023 21:43:40.481] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodstrashcans-1.0.16-forge-mc1.18.jar
[04Feb2023 21:43:40.481] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file trashcans-1.0.16-forge-mc1.18.jar with {trashcans} mods — versions {1.0.16}
[04Feb2023 21:43:40.485] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodstrashslot-forge-1.18.1-11.0.2.jar
[04Feb2023 21:43:40.485] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file trashslot-forge-1.18.1-11.0.2.jar with {trashslot} mods — versions {11.0.2}
[04Feb2023 21:43:40.517] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodstwilightforest-1.18.2-4.1.1494-universal.jar
[04Feb2023 21:43:40.518] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file twilightforest-1.18.2-4.1.1494-universal.jar with {twilightforest} mods — versions {4.1.1494}
[04Feb2023 21:43:40.524] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsupgrade_aquatic-1.18.2-4.0.0.jar
[04Feb2023 21:43:40.525] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file upgrade_aquatic-1.18.2-4.0.0.jar with {upgrade_aquatic} mods — versions {4.0.0}
[04Feb2023 21:43:40.528] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsvalhelsia_core-forge-1.18.2-0.4.0.jar
[04Feb2023 21:43:40.529] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file valhelsia_core-forge-1.18.2-0.4.0.jar with {valhelsia_core} mods — versions {1.18.2-0.4.0}
[04Feb2023 21:43:40.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodswaystones-forge-1.18.2-10.1.0.jar
[04Feb2023 21:43:40.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file waystones-forge-1.18.2-10.1.0.jar with {waystones} mods — versions {10.1.0}
[04Feb2023 21:43:40.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsWitherSkeletonTweaks-1.18.2-7.1.3.jar
[04Feb2023 21:43:40.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file WitherSkeletonTweaks-1.18.2-7.1.3.jar with {wstweaks} mods — versions {7.1.3}
[04Feb2023 21:43:40.539] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s Modpackmodsxnet-1.18-4.0.8.jar
[04Feb2023 21:43:40.540] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file xnet-1.18-4.0.8.jar with {xnet} mods — versions {1.18-4.0.8}
[04Feb2023 21:43:40.543] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsXNetGases-1.18.2-3.0.1.jar
[04Feb2023 21:43:40.543] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file XNetGases-1.18.2-3.0.1.jar with {xnetgases} mods — versions {3.0.1}
[04Feb2023 21:43:40.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsYungsApi-1.18.2-Forge-2.2.7.jar
[04Feb2023 21:43:40.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsApi-1.18.2-Forge-2.2.7.jar with {yungsapi} mods — versions {1.18.2-Forge-2.2.7}
[04Feb2023 21:43:40.554] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsYungsBetterDungeons-1.18.2-Forge-2.1.0.jar
[04Feb2023 21:43:40.555] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDungeons-1.18.2-Forge-2.1.0.jar with {betterdungeons} mods — versions {1.18.2-Forge-2.1.0}
[04Feb2023 21:43:40.559] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsYungsBetterMineshafts-1.18.2-Forge-2.2.jar
[04Feb2023 21:43:40.560] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterMineshafts-1.18.2-Forge-2.2.jar with {bettermineshafts} mods — versions {1.18.2-Forge-2.2}
[04Feb2023 21:43:40.564] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstancesDaniel And Or’s ModpackmodsYungsBetterStrongholds-1.18.2-Forge-2.1.1.jar
[04Feb2023 21:43:40.565] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar with {betterstrongholds} mods — versions {1.18.2-Forge-2.1.1}
[04Feb2023 21:43:40.727] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file client-1.18.2-20220404.173914-srg.jar with {minecraft} mods — versions {1.18.2}
[04Feb2023 21:43:40.739] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgefmlcore1.18.2-40.2.0fmlcore-1.18.2-40.2.0.jar
[04Feb2023 21:43:40.739] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgefmlcore1.18.2-40.2.0fmlcore-1.18.2-40.2.0.jar is missing mods.toml file
[04Feb2023 21:43:40.744] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgejavafmllanguage1.18.2-40.2.0javafmllanguage-1.18.2-40.2.0.jar
[04Feb2023 21:43:40.744] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgejavafmllanguage1.18.2-40.2.0javafmllanguage-1.18.2-40.2.0.jar is missing mods.toml file
[04Feb2023 21:43:40.749] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgelowcodelanguage1.18.2-40.2.0lowcodelanguage-1.18.2-40.2.0.jar
[04Feb2023 21:43:40.749] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgelowcodelanguage1.18.2-40.2.0lowcodelanguage-1.18.2-40.2.0.jar is missing mods.toml file
[04Feb2023 21:43:40.754] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgemclanguage1.18.2-40.2.0mclanguage-1.18.2-40.2.0.jar
[04Feb2023 21:43:40.754] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgemclanguage1.18.2-40.2.0mclanguage-1.18.2-40.2.0.jar is missing mods.toml file
[04Feb2023 21:43:40.781] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:Usersuser1curseforgeminecraftInstalllibrariesnetminecraftforgeforge1.18.2-40.2.0forge-1.18.2-40.2.0-universal.jar
[04Feb2023 21:43:40.782] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.18.2-40.2.0-universal.jar with {forge} mods — versions {40.2.0}
[04Feb2023 21:43:40.800] [main/ERROR] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/SCAN]: Failed to build unique mod list after mod discovery.
net.minecraftforge.fml.loading.EarlyLoadingException: Duplicate mods found
at net.minecraftforge.fml.loading.UniqueModListBuilder.buildUniqueList(UniqueModListBuilder.java:78) ~[fmlloader-1.18.2-40.2.0.jar%2317!/:1.0]
at net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer.discoverMods(ModDiscoverer.java:76) ~[fmlloader-1.18.2-40.2.0.jar%2317!/:?]
at net.minecraftforge.fml.loading.FMLLoader.beginModScan(FMLLoader.java:166) ~[fmlloader-1.18.2-40.2.0.jar%2317!/:1.0]
at net.minecraftforge.fml.loading.FMLServiceProvider.beginScanning(FMLServiceProvider.java:86) ~[fmlloader-1.18.2-40.2.0.jar%2317!/:1.0]
at cpw.mods.modlauncher.TransformationServiceDecorator.runScan(TransformationServiceDecorator.java:112) ~[modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.modlauncher.TransformationServicesHandler.lambda$runScanningTransformationServices$8(TransformationServicesHandler.java:100) ~[modlauncher-9.1.3.jar%235!/:?]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) [?:?]
at java.util.HashMap$ValueSpliterator.forEachRemaining(HashMap.java:1779) [?:?]
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) [?:?]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) [?:?]
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) [?:?]
at java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) [?:?]
at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) [?:?]
at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) [?:?]
at java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) [?:?]
at cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:102) [modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:55) [modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.modlauncher.Launcher.run(Launcher.java:87) [modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?]
at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?]
[04Feb2023 21:43:40.821] [main/ERROR] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/SCAN]: Mod Discovery failed. Skipping dependency discovery.
[04Feb2023 21:43:40.828] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger — transformation service fml
[04Feb2023 21:43:40.839] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 0 language providers
[04Feb2023 21:43:40.845] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft]

 

I continue to get this error whenever trying to build a project. This has never happened before and doesn’t happen on my other PCs, just my laptop. Here is the full error:

FAILURE: Build failed with an exception.

* What went wrong:
Unable to get mutable Windows environment variable map

* Try:
Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Exception is:
net.rubygrapefruit.platform.NativeException: Unable to get mutable Windows environment variable map
        at net.rubygrapefruit.platform.internal.WrapperProcess.getWindowsEnv(WrapperProcess.java:127)
        at net.rubygrapefruit.platform.internal.WrapperProcess.setEnvInternal(WrapperProcess.java:100)
        at net.rubygrapefruit.platform.internal.WrapperProcess.setEnvironmentVariable(WrapperProcess.java:85)
        at org.gradle.internal.nativeintegration.processenvironment.NativePlatformBackedProcessEnvironment.setNativeEnvironmentVariable(NativePlatformBackedProcessEnvironment.java:36)
        at org.gradle.internal.nativeintegration.processenvironment.AbstractProcessEnvironment.setEnvironmentVariable(AbstractProcessEnvironment.java:67)
        at org.gradle.internal.nativeintegration.processenvironment.AbstractProcessEnvironment.maybeSetEnvironment(AbstractProcessEnvironment.java:41)
        at org.gradle.launcher.daemon.server.exec.EstablishBuildEnvironment.doBuild(EstablishBuildEnvironment.java:65)
        at org.gradle.launcher.daemon.server.exec.BuildCommandOnly.execute(BuildCommandOnly.java:36)
        at org.gradle.launcher.daemon.server.api.DaemonCommandExecution.proceed(DaemonCommandExecution.java:122)
        at org.gradle.launcher.daemon.server.exec.StartBuildOrRespondWithBusy$1.run(StartBuildOrRespondWithBusy.java:50)
        at org.gradle.launcher.daemon.server.DaemonStateCoordinator$1.run(DaemonStateCoordinator.java:295)
        at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
        at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630)
        at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)
        at java.base/java.lang.Thread.run(Thread.java:831)
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make field private static final java.util.Map java.lang.ProcessEnvironment.theCaseInsensitiveEnvironment accessible: module java.base does not "opens java.lang" to unnamed module @7d417077
        at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:357)
        at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
        at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:177)
        at java.base/java.lang.reflect.Field.setAccessible(Field.java:171)
        at net.rubygrapefruit.platform.internal.WrapperProcess.getWindowsEnv(WrapperProcess.java:124)
        ... 16 more

Пытаюсь собрать приложение, получаю

To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/4.10.1/userguide/gradle_daemon.html.

FAILURE: Build failed with an exception.

* What went wrong:

Unable to get mutable Windows environment variable map

Параметры такие:

[info] Android ARM 64 (Gradle)

[info] Дата и время начала сборки: 20.04.2021 16:01:35

[info] Файловый вариант ИБ       : Нет

[info] Версия ОС                 : Windows x86-64, Microsoft Windows 7 version 6.1 Service Pack 1 (Build 7601)

[info] Оперативная память        : 122 879

[info] Версия 1С:Предприятия     : 8.3.15.1830 Windows x86-64

[info] Версия сборщика           : 2.0.10.77

[info] Версия мобильной платформы: 8.3.16.142

[info] Тип сборки                : app

[info] Графическая информация    :

[info] Аудиоинформация           :

[info] Путь к Android SDK        : C:MobileSDK

[info] Android API Level         : 30

[info] Путь к Java               : C:Program FilesJavajdk-16

[info] Версия Java               : java version «16» 2021-03-16

[info] Архитектура Java          : 64

[info] Рабочий каталог (и кеш)   : C:MobileTEMP

Подскажите коллеги где искать решение проблемы

Содержание

  1. [Simple Guide] How to compile the SBA beta in less than 10 minutes
  2. Toadstar0IsPog
  3. Unable to get mutable Windows environment variable map
  4. See also questions close to this topic
  5. Problems with Windows PATH variable getting imported #1890
  6. Comments
  7. mindplay-dk commented Apr 12, 2017
  8. How To Set Environment Variables
  9. Environment Variables.
  10. Windows Environment Variables
  11. macOS and Linux Distributions
  12. Cloud Providers
  13. Summary
  14. Windows 7 environment variable not working in path
  15. 14 Answers 14

[Simple Guide] How to compile the SBA beta in less than 10 minutes

3996899

Toadstar0IsPog

Dedicated Member

Note: Right now, I have tried to make the guide Windows Only as I do not have a mac and cannot test it. It may not function properly on a mac.

The SBA beta is completely open-source and public. I’ve spent hours trying to figure out how to compile it but I finally figured it out. This will be a short guide to make compiling much easier. If you have the money, you should probably just donate to Biscut but a lot of people like me don’t have the money. Another thing is that if Biscut did not want people doing this. They would not have made it so easy. The source code is completely public, there’s no whitelist. They could fix this so easily, make a whitelist, make the source code private. So, imo, ur paying for a pre-compiled version.

3. Extract the ZIP (right click on it and click extract).

4. Shift right click on the SkyBlockAddons-development file and click «Open Powershell window here.» Make sure you have the folder before the actual files selected. For example, sometimes there is a file called SkyBlockAddons-Development and a file inside that called SkyBlockAddons-Development. Make sure to open the one inside that

6. Go back to SkyBlockAddons-development folder. Click on build. Click on libs. Drag the finished mod into your mods folder! Congrats, you now have the SBA beta!

If you have any errors, tell me. I spent hours on this guide just asking people how to do it so I wanted to try and create a simple way for people to do it in just 10 minutes

Selling mods completely breaks the Minecraft EULA. I am simply not gonna pay someone, support someone who is breaking the EULA for profit. To bathe in those dollars.

Another thing is that biscuit has not tried to stop this, they’ve made source public and everything.

Now why might you as a consumer want this?

1. Dragon Tracker
2. Disable Mort Messages
3. Dolphin pet tracker
4. Dungeon Death Counter
5. Dungeon Secret Display
6. Dungeon map that doesn’t require you to turn off fast render (NEU moment)
7. dungeon teammate name overlay
8. glowing dropped items
9. essence tracker
10. and a bit more i was too lazy to show off

500 downloads on the direct download despite it only being added somewhat recently.

#1 most pages on code help subforum (#2 is about 13 pages)

My largest thread in terms of views, and pages.

Danker’s linked this guide in his discord.

Issue: Crash on login

Info: From my knowledge, Biscuit seems to have updated the development build to make you crash when you try to compile the mod (sneaky af if that’s what they did lmao).

Issue: Don’t want to sign into an Oracle account

Info: Oracle forces you to sign in and asks for personal information in order to download Java, this is intrusive and annoying.

To download any JRE or JDK from the Oracle download page without signing in, go to the downloads page for the version you want (such as https://www.oracle.com/java/technologies/jdk12-downloads.html) and click on the Download link of your choice.

When a window pops up saying you need to accept the license agreement, check the box that says you agree. But instead of clicking on the green Download link (which will send you to the login page), right-click the download link and select Copy Link Location.
NOTE: If clicking Download doesn’t show a box and takes you straight to the login page instead, you will need to clear your cookies on the Java website (or open in incognito mode).
Paste the copied link into a text editor like Notepad. You’ll see the link points to something like oracle.com/webapps/redirect/signon, but it has a query attached that starts with «nexturl=». The URL that follows nexturl= is the actual link that will download the file to your computer.
If you want to download any JRE or JDK without signing into Oracle, go to the downloads page for the version you want (such as https://www.oracle.com/java/technologies/jdk12-downloads.html) and right-click on the Download link of your choice. Select «Copy Link Location» and then paste it into a text editor like Notepad.

NOTE: you may need to change the otn in the path to otn-pub as described below.

Issue: Which one do I download.

Info: When downloading JDK, there are a lot of options.

Источник

Unable to get mutable Windows environment variable map

I am trying with minecraft modding with forge while following this tutorial

at 9:35 when i put that command i got this error.

FAILURE: Build failed with an exception.

What went wrong: Unable to get mutable Windows environment variable map

Get more help at https://help.gradle.org To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/4.10.3/userguide/gradle_daemon.html.

Please tell me what has gone wrong here?

also recommend me some tutorial on this topic if you can.

See also questions close to this topic

I’m trying to post api.discogs.com/marketplace/listings. in java.

When I try to make a newlisting post, the result is «returned a response status of 422 null».

«422 Unprocessable Entity Your request was well-formed, but there’s something semantically wrong with the body of the request. This can be due to malformed JSON, a parameter that’s missing or the wrong type, or trying to perform an action that doesn’t make any sense. Check the response body for specific information about what went wrong.»

«Invalid release_id:expected integer» is displayed as a message.

My get methods work but post doesn’t.

Does anyone have an idea?

I am creating keys in Java using Bouncy Castle:

and want to store them as byte arrays, as I need to export them to my C application later on. I noticed that:

will return bytes of Public key, but length is wrong. I guess it is related to format which is X.509 for PublicKey and PKCS#8 for private. Looking for help I found out that there are some classes in Java like PKCS8EncodedKeySpec which should help me get raw key, but wasn’t able to figure out how to do it.

I have two plans before this problem

The first scheme is to use JfreeChart to generate images and put them into PDF. However, images need to be generated every time, which will occupy unnecessary memory,

The second is to combine the two of them

But I don’t know how to operate both of them

The project I use is spiring boot version 1.5

Forgive my stupidity

So im trying to make this mod give you 2 apples (for testing purposes) but I cant seem to get it to work :/ (no errors nothing the mod does not output anything) here’s my code (1.8.9 Forge BTW):

What I’m trying to do is make an Anti-swear plugin for my server. It works fine, but players can bypass it easly. Let’s say that in my config i have the word «test» listed. If the player types the word «test» in the chat normally, the plugin will detect it. But if the player types in, for example «testtttttttt» the the plugin will not detect it. How can I make it so that it detects the word as long as its just there? Here is the code I have currently:

So i am kind of at a loss right now. I have looked into countless guides and have done plenty of research but none of it helps

Basically i have a domain that i am managing through Cloudflare and i am trying to route a subdomain to a specific ip and port, i made an ‘A’ record for the subdomain and then made an SRV record specifying the port and all that.

Also, as of recently i can’t even go to my basic webserver test page which is running off of Apache2.

However i can view the website when i go directly to the ip address but curiously enough i can’t access the Minecraft server with the ip anymore.

Here are some screenshots (blurred out ip and some of the domain):

(Also disabled the proxies before this incase it would do anything. it did not)

Any help is appreciated as i am completely confused and lost. Thanks

I started to create a Minecraft Forgemod, which should be a extension for Thaumcraft 6. I included Thaumcraft as a dependency in build.gradle like that:

I can see all the classes I should see in the code, but when I start the game, I get this error-screen:

Thaumcraft-12.2.2-6.1.BETA26.jar is located in my run/mod folder. (btw I’m using Intellij)

How can I fix that?

I’m trying to make a mod for 1.7.10 (I know, outdated, but I don’t think it matters much in this context) merging a few mods with CustomNPC, basically adding a few weapons that would look and work like CustomNPC weapons but made of differen mods’ materials. The shields the mod provides for some reason require a certain enum in their constructor:

The enum stores material types and all their values. I don’t wanna edit the code of that mod iself, but I want to add a few more materials to it. Is there a way to add something to that enum or maybe cast an identical enum with different materials into this type?

I’ve already found a way around it by making a custom shield class that simply takes the values from my custom enum, but I’m curious if there’s a way to do it without adding new classes.

I think I’ll add the mod’s EnumNpcToolMaterial so it’s more clear what exactly that shield constructor wants

Источник

Problems with Windows PATH variable getting imported #1890

I understand that the Windows PATH variable gets imported into the Linux environment on start-up.

I gather from poking through related issues that this is by design, I guess, with the idea of being able to run Windows executables from the Bash command prompt.

I was quit suprised to find that feature on the road-map. I honestly was not expecting that would be possible at all, and I’m not completely sure I understand how that’s going to be useful in practice. I mean, even if they can launch, Windows applications aren’t going to be aware of the Linux OS, so it seems a bit odd.

Either way, I find that the import of Windows paths into the Linux environment is causing a lot of practical problems.

I have lots of scripts and tools set up for my work routine in Windows, and these simply don’t work, or get in the way and cause weird/unexpected results in Linux.

I understand that there’s a registry work-around which I guess I’ll try, but I wanted to open this issue to make you aware that, well, there are issues with this feature. Things that were designed to run under Windows, built for Windows, installed on Windows, etc. often have artifacts like cached data or binaries that don’t simply work, even if you can get them to launch under Linux.

/.bashrc which I think is where the PATH variable is normally initialized?

/.bashrc where I’d be able to see it and change it?

The text was updated successfully, but these errors were encountered:

Источник

How To Set Environment Variables

CP66owhMZeayfuKH2GO2bPS oOhngyGdAI323rP9xVWDwm.width 808

There are some things we just shouldn’t share with our code. These are often configuration values that depend on the environment such as debugging flags or access tokens for APIs like Twilio. Environment variables are a good solution and they are easy to consume in most languages.

Environment Variables.

eUhKcrlT5uO9dmeQk4EuAZQKrehhEikH5QwTnv S9JTgzb.width 500

Twilio’s helper libraries for example, look for the TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN environment variables if you instantiate a client without the two values. This way you don’t have to worry about accidentally pushing sensitive credentials to a place such as GitHub.

Windows Environment Variables

Setting environment variables in Windows is pretty hidden in several layers of settings dialogs. Just like most things in Windows, we will set environment variables using a graphical user interface. To open the respective interface you first have to open the Windows Run prompt. Do so by pressing the Windows and R key on your keyboard at the same time. Type sysdm.cpl into the input field and hit Enter or press Ok.

OObV7x5BG9ocXwjO70IbNnsIu6t1J4OdvauLPJPnL1orAi.width 500

In the new window that opens, click on the Advanced tab and afterwards on the Environment Variables button in the bottom right of the window.

6s5RUPP0Oy rlW eBFBej7RaFjE9Ya2Hmf2qJsdPlilfEq.width 500AqsRGon0Ywv2SAxmA qERzFVwZKXuefu08WPDw0Tw7ffus.width 500

The window has two different sections. One is the list of environment variables that are specific to your user. This means they aren’t available to the other users. The other section contains the system-wide variables that are shared across all users.

Create a user specific variable by clicking the New button below the user-specific section. In the prompt you can now specify the name of your variable as well the value. Create a new variable with the name TWILIO_ACCOUNT_SID and copy your Twilio Account SID from the Console. Press Ok in the prompt to create the variable, followed by Ok on the Environment Variables window. You are all set now.

gs7vw65K27tHdDlA5cVCJSC9MxkZj6eUOfRNwcASDXeFBX.width 500

This should print the value that you saved in the environment variable.

8M5bnf2gCUL5xSetk8WuB5wMfpSxf8ywvxsCidJ6QwDrrI.width 500

macOS and Linux Distributions

In order to set environment variables on macOS or any UNIX based operating system you first have to figure out which shell you are running. You can do that by running in your terminal the command:

In order to set an environment variable we need to use the export command in the following format:

Replace youraccountsid with your actual Account SID from your Twilio Console. Save the file and open a new terminal instance to test if it worked by running:

You should see the value that you stored in it.

nfoA2UgpiGT7TA4SA kJBFLuHJ5ROe7UTW80UQDgrd7LCi.width 500

There are libraries for most programming languages to load these files. Here are a few:

Now all you need to do is consume the respective library and then you can use the environment variable. In Node.js the respective code would look like this:

Cloud Providers

Setting environment variables on your local development machine or in a VM is only half the work. What if we are hosting our application in a cloud environment such as Heroku, Azure or AWS or even wrap it in a Docker container? Luckily, all of these providers support ways to define environment variables. You can find instructions on how to set them in their documentations:

If you can’t find your cloud host among this list it doesn’t necessarily mean there is no way to configure environment variables. Make sure to check their documentation for more on it.

Summary

That’s it! Now you can set environment variables which means that you can take all of your environment based configuration values out of your code and make your code more flexible and safe!

Be mindful that these values are still stored in plain text. If you are planning to store very sensitive values you should look into something like a secret storage solution such as Vault.

Источник

Windows 7 environment variable not working in path

So, I manually added the entire path in PATH. «C:mavenbin;. rest» and it was able to find «mvn» and execute it.

Could someone help me what I did wrong?

EuSAO

14 Answers 14

Check if there is a space character between the previous path and the next:

Incorrect: c:path1; c:Mavenbin; c:path2

I had exactly the same problem, to solve it, you can do one of two things:

If the above are all correct, but the problem is still present, you need to check the system Registry, in HKEY_CURRENT_USEREnvironment, to make sure the «PATH» key type is REG_EXPAND_SZ (not REG_SZ).

My issue turned out to be embarrassingly simple:

Restart command prompt and the new variables should update

Things like having %PATH% or spaces between items in your path will break it. Be warned.

Yes, windows paths that include spaces will cause errors. For example an application added this to the front of the system %PATH% variable definition:

which caused all of the paths in %PATH% to not be set in the cmd window.

My solution is to demarcate the extended path variable in double quotes where needed:

The spaces are therefore ignored and the full path variable is parsed properly.

If there is any error at all in the PATH windows will silently disregard it. Things like having %PATH% or spaces between items in your path will break it. Be warned

%M2% and %JAVA_HOME% need to be added to a PATH variable in the USER variables, not the SYSTEM variables.

To use click ‘start > all programs > accessories’, right-click on ‘command prompt’ and select ‘run as administrator’.

To address this problem, I have used setx command which try to set user level variables.

NOTE: Windows try to append provided variable value to existing variable value. So no need to give extra %PATH%. something like %JAVA_HOME%bin;%PATH%

If the PATH value would be too long after your user’s PATH variable has been concatenated onto the environment PATH variable, Windows will silently fail to concatenate the user PATH variable.

This can easily happen after new software is installed and adds something to PATH, thereby breaking existing installed software. Windows fail!

The best fix is to edit one of the PATH variables in the Control Panel and remove entries you don’t need. Then open a new CMD window and see if all entries are shown in «echo %PATH%».

fhMlS

I had this problem in Windows 10 and it seemed to be solved after I closed «explorer.exe» in the Task Manager.

photo

Also remove the variable from user to system and only include that path on user variable

Источник

Как и большинство людей, нашедших эту ветку, я писал несколько модульных тестов, и мне нужно было изменить переменные среды, чтобы установить правильные условия для запуска теста. Тем не менее, я обнаружил, что ответы, получившие наибольшее количество голосов, имели некоторые проблемы и / или были очень загадочными или чрезмерно сложными. Надеюсь, это поможет другим быстрее найти решение.

Во-первых, я наконец нашел решение @Hubert Grzeskowiak самым простым, и оно сработало для меня. Я хотел бы сначала прийти к этому. Он основан на ответе @Edward Campbell, но без усложнения поиска цикла.

Однако я начал с решения @ pushy, которое набрало больше всего голосов. Это комбинация @anonymous и @Edward Campbell. @pushy утверждает, что оба подхода необходимы для работы как в Linux, так и в Windows. Я работаю под OS X и обнаружил, что оба работают (как только проблема с подходом @anonymous будет исправлена). Как отмечали другие, это решение работает большую часть времени, но не все.

Я думаю, что источником большей части путаницы является решение @anonymous, работающее с полем theEnvironment. Глядя на определение Процесс структура, ‘theEnvironment’ не является Map <String, String>, а скорее является Map <Variable, Value>. Очистка карты работает нормально, но операция putAll перестраивает карту Map <String, String>, что потенциально вызывает проблемы, когда последующие операции работают со структурой данных с использованием обычного API, ожидающего Map <Variable, Value>. Кроме того, доступ к отдельным элементам / их удаление является проблемой. Решение состоит в том, чтобы получить доступ к ‘theEnvironment’ косвенно через ‘theUnmodifiableEnvironment’. Но поскольку это тип Неизменяемая карта доступ должен осуществляться через приватную переменную m типа UnmodifiableMap. См. GetModifiableEnvironmentMap2 в коде ниже.

В моем случае мне нужно было удалить некоторые переменные среды для моего теста (другие должны быть без изменений). Затем я хотел восстановить переменные среды в их прежнее состояние после теста. Приведенные ниже процедуры упрощают выполнение этого. Я тестировал обе версии getModifiableEnvironmentMap в OS X, и обе работают одинаково. Хотя, судя по комментариям в этой ветке, один может быть лучшим выбором, чем другой, в зависимости от среды.

Примечание. Я не включил доступ к «theCaseInsensitiveEnvironmentField», поскольку он, похоже, специфичен для Windows, и у меня не было возможности его протестировать, но добавить его должно быть просто.

private Map<String, String> getModifiableEnvironmentMap() {
    try {
        Map<String,String> unmodifiableEnv = System.getenv();
        Class<?> cl = unmodifiableEnv.getClass();
        Field field = cl.getDeclaredField("m");
        field.setAccessible(true);
        Map<String,String> modifiableEnv = (Map<String,String>) field.get(unmodifiableEnv);
        return modifiableEnv;
    } catch(Exception e) {
        throw new RuntimeException("Unable to access writable environment variable map.");
    }
}

private Map<String, String> getModifiableEnvironmentMap2() {
    try {
        Class<?> processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment");
        Field theUnmodifiableEnvironmentField = processEnvironmentClass.getDeclaredField("theUnmodifiableEnvironment");
        theUnmodifiableEnvironmentField.setAccessible(true);
        Map<String,String> theUnmodifiableEnvironment = (Map<String,String>)theUnmodifiableEnvironmentField.get(null);

        Class<?> theUnmodifiableEnvironmentClass = theUnmodifiableEnvironment.getClass();
        Field theModifiableEnvField = theUnmodifiableEnvironmentClass.getDeclaredField("m");
        theModifiableEnvField.setAccessible(true);
        Map<String,String> modifiableEnv = (Map<String,String>) theModifiableEnvField.get(theUnmodifiableEnvironment);
        return modifiableEnv;
    } catch(Exception e) {
        throw new RuntimeException("Unable to access writable environment variable map.");
    }
}

private Map<String, String> clearEnvironmentVars(String[] keys) {

    Map<String,String> modifiableEnv = getModifiableEnvironmentMap();

    HashMap<String, String> savedVals = new HashMap<String, String>();

    for(String k : keys) {
        String val = modifiableEnv.remove(k);
        if (val != null) { savedVals.put(k, val); }
    }
    return savedVals;
}

private void setEnvironmentVars(Map<String, String> varMap) {
    getModifiableEnvironmentMap().putAll(varMap);   
}

@Test
public void myTest() {
    String[] keys = { "key1", "key2", "key3" };
    Map<String, String> savedVars = clearEnvironmentVars(keys);

    // do test

    setEnvironmentVars(savedVars);
}

Note: Right now, I have tried to make the guide Windows Only as I do not have a mac and cannot test it. It may not function properly on a mac.

The SBA beta is completely open-source and public. I’ve spent hours trying to figure out how to compile it but I finally figured it out. This will be a short guide to make compiling much easier. If you have the money, you should probably just donate to Biscut but a lot of people like me don’t have the money. Another thing is that if Biscut did not want people doing this. They would not have made it so easy. The source code is completely public, there’s no whitelist. They could fix this so easily, make a whitelist, make the source code private. So, imo, ur paying for a pre-compiled version.

1. Download JDK: https://adoptopenjdk.net/?variant=openjdk8&jvmVariant=hotspot

2. Download the SBA development build: https://github.com/My-Name-Is-Jeff/SkyblockAddons/tree/development

3. Extract the ZIP (right click on it and click extract).

4. Shift right click on the SkyBlockAddons-development file and click «Open Powershell window here.» Make sure you have the folder before the actual files selected… For example, sometimes there is a file called SkyBlockAddons-Development and a file inside that called SkyBlockAddons-Development. Make sure to open the one inside that

5. run the command ./gradlew build

6. Go back to SkyBlockAddons-development folder. Click on build. Click on libs. Drag the finished mod into your mods folder! Congrats, you now have the SBA beta!

If you have any errors, tell me. I spent hours on this guide just asking people how to do it so I wanted to try and create a simple way for people to do it in just 10 minutes

Selling mods completely breaks the Minecraft EULA. I am simply not gonna pay someone, support someone who is breaking the EULA for profit. To bathe in those dollars.

Another thing is that biscuit has not tried to stop this, they’ve made source public and everything.

Now why might you as a consumer want this?

1. Dragon Tracker
2. Disable Mort Messages
3. Dolphin pet tracker
4. Dungeon Death Counter
5. Dungeon Secret Display
6. Dungeon map that doesn’t require you to turn off fast render (NEU moment)
7. dungeon teammate name overlay
8. glowing dropped items
9. essence tracker
10. and a bit more i was too lazy to show off

Also, thanks to @Hobblefart they helped me with getting the github working a bit

This is a guide on how to compile it. Not a guide that sends you downloads with backdoors.

500 downloads on the direct download despite it only being added somewhat recently.

Sk1er replied.

#1 most pages on code help subforum (#2 is about 13 pages)

almost 10k views.

My largest thread in terms of views, and pages.

Danker’s linked this guide in his discord.

Issue: Crash on login

Info: From my knowledge, Biscuit seems to have updated the development build to make you crash when you try to compile the mod (sneaky af if that’s what they did lmao).

Fix: Download it from here: https://github.com/BiscuitDevelopment/SkyblockAddons/tree/d822e1450f19f054a2b67b92598fee54ba451885

Issue: Don’t want to sign into an Oracle account

Info: Oracle forces you to sign in and asks for personal information in order to download Java, this is intrusive and annoying.

Fix:

To download any JRE or JDK from the Oracle download page without signing in, go to the downloads page for the version you want (such as https://www.oracle.com/java/technologies/jdk12-downloads.html) and click on the Download link of your choice.

When a window pops up saying you need to accept the license agreement, check the box that says you agree. But instead of clicking on the green Download link (which will send you to the login page), right-click the download link and select Copy Link Location.
NOTE: If clicking Download doesn’t show a box and takes you straight to the login page instead, you will need to clear your cookies on the Java website (or open in incognito mode).
Paste the copied link into a text editor like Notepad. You’ll see the link points to something like oracle.com/webapps/redirect/signon, but it has a query attached that starts with «nexturl=». The URL that follows nexturl= is the actual link that will download the file to your computer.
If you want to download any JRE or JDK without signing into Oracle, go to the downloads page for the version you want (such as https://www.oracle.com/java/technologies/jdk12-downloads.html) and right-click on the Download link of your choice. Select «Copy Link Location» and then paste it into a text editor like Notepad.

NOTE: you may need to change the otn in the path to otn-pub as described below.

Issue: Which one do I download???

Info: When downloading JDK, there are a lot of options.

Fix: Click on Windows x64 or Windows x86

Понравилась статья? Поделить с друзьями:
  • Unable to get initial keys windows 10
  • Unable to get activation information windows 7 loader
  • Unable to find file graphics system windows как исправить
  • Unable to find a compatible srs audio device windows 10
  • Unable to establish ssl connection wget windows