Jump to content

Recommended Posts

Posted

I have started messing with Forge 1.15.2-31.2.0, and attempted to run my mod using runClient without any items or blocks to ensure all the boilerplate code was in order. However, I got the following exception. The stack trace doesn't appear to include any of the code I've written. What have I done wrong? (Any advice on better code practices or something to stop the reflective access is appreciated as well).

2020-06-19 20:53:04,341 main WARN Advanced terminal features are not available in this environment
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by net.minecraftforge.userdev.LaunchTesting (file:/C:/Users/vijay/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1/forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar) to method java.lang.ClassLoader.initializePath(java.lang.String)
WARNING: Please consider reporting this to the maintainers of net.minecraftforge.userdev.LaunchTesting
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[20:53:04] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevclient, --fml.mcpVersion, 20200515.085601, --fml.mcVersion, 1.15.2, --fml.forgeGroup, net.minecraftforge, --fml.forgeVersion, 31.2.0, --version, MOD_DEV, --assetIndex, 1.15, --assetsDir, C:\Users\vijay\.gradle\caches\forge_gradle\assets, --username, Dev, --accessToken, ????????, --userProperties, {}]
[20:53:04] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 5.1.0+69+master.79f13f7 starting: java version 12.0.1 by Oracle Corporation
[20:53:04] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,fmldevdata,fmldevclient,fmldevserver,fmluserdevserver,fmluserdevdata,testharness,fmlclient,fmluserdevclient,fmlserver]
[20:53:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
[20:53:04] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [eventbus,object_holder_definalize,runtime_enum_extender,capability_inject_definalize,accesstransformer,runtimedistcleaner]
[20:53:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services
[20:53:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: []
   [20:53:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [fml]
[20:53:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[20:53:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/]: Injecting tracing printstreams for STDOUT/STDERR.
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 31.2
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 31.2 loading
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 5.1.0+69+master.79f13f7
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Initializing modjar URL handler
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 2.1.1+55+master.08d32b9
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 2.2.0+59+master.4f71e48
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 2.0.3+8+master.ca72757
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 2.1.2+9+master.a8b4d92
[20:53:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 3
   [20:53:05] [main/INFO] [ne.mi.fm.lo.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[20:53:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[20:53:05] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[20:53:05] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[20:53:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing GAMEDIR directory : C:\Users\vijay\Documents\Modding\Development\run
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\vijay\Documents\Modding\Development\run
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing MODSDIR directory : C:\Users\vijay\Documents\Modding\Development\run\mods
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\vijay\Documents\Modding\Development\run\mods
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing CONFIGDIR directory : C:\Users\vijay\Documents\Modding\Development\run\config
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\vijay\Documents\Modding\Development\run\config
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\vijay\Documents\Modding\Development\run\config\fml.toml
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration
   [20:53:05] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing default config directory directory : C:\Users\vijay\Documents\Modding\Development\run\defaultconfigs
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler
[20:53:05] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using fmluserdevclient as launch service
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data  : MC Version: '1.15.2' MCP Version: '20200515.085601' Forge Version: '31.2.0' Forge group: 'net.minecraftforge'
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR forge at path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR mcdata at path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_repo\versions\1.15.2\client-extra.jar
[20:53:06] [main/DEBUG] [ne.mi.us.FMLUserdevLaunchProvider/CORE]: Injecting maven path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.FMLCommonLaunchHandler/CORE]: Got mod coordinates examplemod%%C:\Users\vijay\Documents\Modding\Development\build\resources\main;examplemod%%C:\Users\vijay\Documents\Modding\Development\build\classes\java\main from env
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.FMLCommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[C:\Users\vijay\Documents\Modding\Development\build\resources\main, C:\Users\vijay\Documents\Modding\Development\build\classes\java\main]}]
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 2 language providers
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 31.2
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Skipping adding forge jar - javafml is already present
   [20:53:06] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fm
[20:53:06] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp'
[20:53:06] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234}
[20:53:06] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning
[20:53:06] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/SCAN]: Scanning for Mod Locators
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path C:\Users\vijay\Documents\Modding\Development\build\resources\main
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar
[20:53:06] [main/DEBUG] [ne.mi.us.ClasspathLocator/CORE]: Found classpath mod: C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-launcher.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_repo\versions\1.15.2\client-extra.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\2.1.1\1d1e439ef345ab5fd76df679de70a0c35f03bf4a\accesstransformers-2.1.1-shadowed.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\2.2.0\e663ad1f795b81da8a132c8fde40580b05c2343d\eventbus-2.2.0-service.jar[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\2.0.3\9e3f5323f6a2c3ac04fa27481cbeeb48f89757bd\coremods-2.0.3.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\2.1.2\867d339ca81f375c560da6d37084066e7f537f15\forgespi-2.1.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\5.1.0\b9caea28c3fd15fd2c971cb41c44855767f7dbc8\modlauncher-5.1.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\5.1.0\1033a85fb0f675efa503c3e7d5009c22c215299e\modlauncher-5.1.0-api.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.0.9\d1e1ba354a40b5703340b5cb02fdca489cff3646\mergetool-1.0.9-api.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\7.2\ca2954e8d92a05bacc28ff465b25c70e0f512497\asm-commons-7.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\6.2\a9690730f92cc79eeadc20e400ebb41eccce10b1\asm-util-6.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\7.2\b6e6abe057f23630113f4167c34bda7086691258\asm-analysis-7.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\7.2\3a23cc36edaf8fc5a89cb100182758ccb5991487\asm-tree-7.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\7.2\fa637eb67eb7628c915d73762b681ae7ff0b9731\asm-7.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\cpw.mods\grossjava9hacks\1.3.0\1a922de964d0c19d864fbcba2678c1a1c4602c35\grossjava9hacks-1.3.0.jar
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.2\3ac4263d06433da39a5eee95e2679f1642d921f0\toml-3.6.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.2\56f6500038861d4a8832072676da7bf7916217d0\core-3.6.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.12.1\de2bd909cb9f8eaa741bd03df4a1bd3f6eb593c7\jline-3.12.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.6.3\f8ff8032903882376e8d000c51e3e16d20fc7df7\maven-artifact-3.6.3.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.8.1\d12de898d333cb7eb0e39a35db03c1e09d92d595\typetools-0.8.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.11.2\6c2fb3f5b7cd27504726aef1b674b542a0c9cf53\log4j-core-2.11.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.11.2\f5e9a2ffca496057d6891a3de65128efc636e26e\log4j-api-2.11.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.1\aef610b34a1be37fa851825f12372b78424d8903\patchy-1.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\javabridge\1.0.22\6aa6453aa99a52a5cd91749da1af6ab70e082ab3\javabridge-1.0.22.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.25.Final\d0626cd3108294d1d58c05859add27b4ef21f83b\netty-all-4.1.25.Final.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.8.1\6505a72a097d9270f7a9e7bf42c4238283247755\commons-lang3-3.8.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.0.17\c6b7dc51dd44379cc751b7504816006e9be4b1e6\brigadier-1.0.17.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\2.0.24\944c24a8519981847ffb36c6dcd059d96fcb4b0\datafixerupper-2.0.24.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.2.1\5ad88f325e424f8dbc2be5459e21ea5cab3864e9\fastutil-8.2.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.2.2\ee8e57a79300f78294576d87c4a587f8c99402e2\lwjgl-jemalloc-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.2.2\338b25b99da3ba5f441f6492f2ce2a9c608860ed\lwjgl-jemalloc-3.2.2-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.2.2\2b772a102b0a11ee5f2109a5b136f4dc7c630827\lwjgl-openal-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.2.2\ec20a7d42a2438528fca87e60b1705f1e2339ddb\lwjgl-openal-3.2.2-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.2.2\6ac5bb88b44c43ea195a570aab059f63da004cd8\lwjgl-opengl-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.2.2\d8dcdc91066cae2d2d8279cb4a9f9f05d9525826\lwjgl-opengl-3.2.2-natives-windows.jar
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.2.2\d3ad4df38e400b8afba1de63f84338809399df5b\lwjgl-glfw-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.2.2\dc6826d636bf796b33a49038c354210e661bfc17\lwjgl-glfw-3.2.2-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.2.2\3b8e6ebc5851dd3d17e37e5cadce2eff2a429f0f\lwjgl-stb-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.2.2\811f705cbb29e8ae8d60bdf8fdd38c0c123ad3ef\lwjgl-stb-3.2.2-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.2.2\fcbe606c8f8da6f8f9a05e2c540eb1ee8632b0e9\lwjgl-tinyfd-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.2.2\e9115958773644e863332a6a06488d26f9e1fc9f\lwjgl-tinyfd-3.2.2-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.2.2\8ad6294407e15780b43e84929c40e4c5e997972e\lwjgl-3.2.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.2.2\5359f3aa50d36352815fc662ea73e1c00d22170\lwjgl-3.2.2-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.11.3\f378f889797edd7df8d32272c06ca80a1b6b0f58\text2speech-1.11.3.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.11.3\c0b242c0091be5acbf303263c7eeeaedd70544c7\text2speech-1.11.3-natives-windows.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.7.2\e27d8ab4f984f9d186f54da984a6ab1cccac755e\antlr4-runtime-4.7.2.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.2.1\13b015768e0d04849d2794e4c47eb02d01a0de32\plexus-utils-3.2.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\vijay\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: []
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (userdev classpath:null),(mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null)
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Scanning for mods and other resources to load. We know 5 ways to find mods
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator net.minecraftforge.userdev.ClasspathLocator@591e58fa
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/SCAN]: Mod file C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar has a manifest
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Found mod file forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar of type MOD with locator net.minecraftforge.userdev.ClasspathLocator@591e58fa
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator {mods folder locator at C:\Users\vijay\Documents\Modding\Development\run\mods}
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModsFolderLocator/SCAN]: Scanning mods dir C:\Users\vijay\Documents\Modding\Development\run\mods for mods
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator {Maven Directory locator for mods []}
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator {ExplodedDir locator}
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ExplodedDirectoryLocator/LOADING]: Found exploded directory mod manifest at C:\Users\vijay\Documents\Modding\Development\build\resources\main\META-INF\mods.toml
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/SCAN]: Mod file C:\Users\vijay\Documents\Modding\Development\build\resources\main is missing a manifest
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Found mod file main of type MOD with locator {ExplodedDir locator}
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer$MinecraftLocator@664a9613
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/SCAN]: Mod file C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_repo\versions\1.15.2\client-extra.jar is missing a manifest
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Found mod file client-extra.jar of type MOD with locator net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer$MinecraftLocator@664a9613
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar with {forge} mods - versions {31.2.0}
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\vijay\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.0_mapped_snapshot_20200514-1.15.1-recomp.jar with language javafml
   [20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod fieldtomethodtransformers with Javascript path META-INF/fieldtomethodtransformers.js
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod META-INF/fieldtomethodtransformers.js
[20:53:06] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\vijay\Documents\Modding\Development\build\resources\main
Exception in thread "main" [20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]: java.lang.RuntimeException: java.net.MalformedURLException: no protocol:
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.StringUtils.toURL(StringUtils.java:51)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.Optional.map(Optional.java:265)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModInfo.<init>(ModInfo.java:90)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.lambda$new$2(ModFileInfo.java:70)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:195)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1654)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:913)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:578)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.<init>(ModFileInfo.java:70)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModFileParser.loadModFile(ModFileParser.java:59)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModFileParser.readModList(ModFileParser.java:51)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModFile.identifyMods(ModFile.java:132)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer.discoverMods(ModDiscoverer.java:116)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.FMLLoader.beginModScan(FMLLoader.java:211)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.fml.loading.FMLServiceProvider.runScan(FMLServiceProvider.java:105)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at cpw.mods.modlauncher.TransformationServiceDecorator.runScan(TransformationServiceDecorator.java:111)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at cpw.mods.modlauncher.TransformationServicesHandler.lambda$runScanningTransformationServices$8(TransformationServicesHandler.java:115)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:271)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.HashMap$ValueSpliterator.forEachRemaining(HashMap.java:1672)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:913)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:578)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:116)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:63)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at cpw.mods.modlauncher.Launcher.run(Launcher.java:75)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at cpw.mods.modlauncher.Launcher.main(Launcher.java:65)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1050]:       at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:102)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1059]: Caused by: java.net.MalformedURLException: no protocol:
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1059]:       at java.base/java.net.URL.<init>(URL.java:650)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1059]:       at java.base/java.net.URL.<init>(URL.java:546)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1059]:       at java.base/java.net.URL.<init>(URL.java:493)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1059]:       at net.minecraftforge.fml.loading.StringUtils.toURL(StringUtils.java:47)
[20:53:06] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1059]:       ... 31 more

> Task :runClient FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':runClient'.
> Process 'command 'C:\Program Files\Java\jdk-12.0.1\bin\java.exe'' finished with non-zero exit value 1

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

* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':runClient'.
        at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:110)
        at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:77)
        at org.gradle.api.internal.tasks.execution.OutputDirectoryCreatingTaskExecuter.execute(OutputDirectoryCreatingTaskExecuter.java:51)
        at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:59)
        at org.gradle.api.internal.tasks.execution.ResolveTaskOutputCachingStateExecuter.execute(ResolveTaskOutputCachingStateExecuter.java:54)
        at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:59)
        at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:101)
        at org.gradle.api.internal.tasks.execution.FinalizeInputFilePropertiesTaskExecuter.execute(FinalizeInputFilePropertiesTaskExecuter.java:44)
        at org.gradle.api.internal.tasks.execution.CleanupStaleOutputsExecuter.execute(CleanupStaleOutputsExecuter.java:91)
        at org.gradle.api.internal.tasks.execution.ResolveTaskArtifactStateTaskExecuter.execute(ResolveTaskArtifactStateTaskExecuter.java:62)
        at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:59)
        at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:54)
        at org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter.execute(ExecuteAtMostOnceTaskExecuter.java:43)
        at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:34)
        at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.run(EventFiringTaskExecuter.java:51)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:301)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:293)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:175)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:91)
        at org.gradle.internal.operations.DelegatingBuildOperationExecutor.run(DelegatingBuildOperationExecutor.java:31)        at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:46)
        at org.gradle.execution.taskgraph.LocalTaskInfoExecutor.execute(LocalTaskInfoExecutor.java:42)
        at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareWorkItemExecutor.execute(DefaultTaskExecutionGraph.java:277)
        at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareWorkItemExecutor.execute(DefaultTaskExecutionGraph.java:262)
        at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$ExecutorWorker$1.execute(DefaultTaskPlanExecutor.java:135)
        at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$ExecutorWorker$1.execute(DefaultTaskPlanExecutor.java:130)
        at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$ExecutorWorker.execute(DefaultTaskPlanExecutor.java:200)
        at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$ExecutorWorker.executeWithWork(DefaultTaskPlanExecutor.java:191)
        at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$ExecutorWorker.run(DefaultTaskPlanExecutor.java:130)
        at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
        at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
        at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)
Caused by: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk-12.0.1\bin\java.exe'' finished with non-zero exit value 1
        at org.gradle.process.internal.DefaultExecHandle$ExecResultImpl.assertNormalExitValue(DefaultExecHandle.java:395)
        at org.gradle.process.internal.DefaultJavaExecAction.execute(DefaultJavaExecAction.java:37)
        at org.gradle.api.tasks.JavaExec.exec(JavaExec.java:79)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:73)
        at org.gradle.api.internal.project.taskfactory.StandardTaskAction.doExecute(StandardTaskAction.java:46)
        at org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:39)
        at org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:26)
        at org.gradle.api.internal.AbstractTask$TaskActionWrapper.execute(AbstractTask.java:801)
        at org.gradle.api.internal.AbstractTask$TaskActionWrapper.execute(AbstractTask.java:768)
        at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter$1.run(ExecuteActionsTaskExecuter.java:131)        at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:301)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:293)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:175)
        at org.gradle.internal.operations.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:91)
        at org.gradle.internal.operations.DelegatingBuildOperationExecutor.run(DelegatingBuildOperationExecutor.java:31)        at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAction(ExecuteActionsTaskExecuter.java:120)
        at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:99)
        ... 31 more


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

Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/4.10.3/userguide/command_line_interface.html#sec:command_line_warnings

BUILD FAILED in 9s
10 actionable tasks: 4 executed, 6 up-to-date

 

Join the conversation

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

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Yes,. TEMU   offers    $100     off Coupon  code {[acw088088] Or [acw088088]} for  First Time User  You can get a    $100     bonus plus       $100    % off any purchase at TEMU   with the    $100     Coupon  Bundle if you sign up with the referral code [[acw088088] Or [acw088088]] and make a first purchase of    $100     or more. Verified user can get a    $100     TEMU   Coupon  code using the code ((“ {{[acw088088] Or [acw088088] }}”)). This TEMU      $100     code is specifically for new and  First Time User  both and can be redeemed to receive a    $100     Coupon on your purchase. Our exclusive TEMU   Coupon  code offers a flat    $100     your purchase, plus an additional       $100    % Coupon on top of that. You can slash prices by up to    $100     as a new TEMU   customer using code ((“ {{[acw088088] Or [acw088088] }}”)).  First Time User  can enjoy    $100     their next haul with this code. But that’s not all! With our TEMU   Coupon  codes for 2025, you can get up to     $100     Coupon on select items and clearance sales. Whether you’re a new customer or an existing shopper, our TEMU   codes provide extra Coupons tailored just for you. Save up to       $100    % with these current TEMU   Coupon s ["^" {{[acw088088] Or [acw088088] }} "^"] for May 2025. The latest TEMU   Coupon  codes at here. New users at TEMU   receive a    $100     Coupon on orders over    $100     Use the code ((“ {{[acw088088] Or [acw088088] }}”)) during checkout to get TEMU   Coupon     $100     For New Users. You can save    $100     your first order with the Coupon  code available for a limited time only. TEMU       $100     Off Coupon code ((“ {{[acw088088] Or [acw088088] }}”)) will save you    $100     on your order. To get a Coupon, click on the item to purchase and enter the code. Yes, TEMU   offers    $100     Coupon  code “ {{[acw088088] Or [acw088088] }}” for first time users. You can get a    $100     bonus plus    $100     any purchase at TEMU   with the    $100     Coupon  Bundle at TEMU   if you sign up with the referral code ((“ {{[acw088088] Or [acw088088] }}”)) and make a first purchase of    $100     or more. Free TEMU   codes    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon     $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon        $100    % off — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Memorial Day Sale    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code today — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   free gift code — ["^" {{[acw088088] Or [acw088088] }}"^"](Without inviting friends or family member) TEMU   Coupon  code for  USA -    $100    — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code  USA -    $100    — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code  USA -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code Japan -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code Mexico -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code Chile -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code  USA -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code Colombia -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code Malaysia -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code Philippines -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon  code South Korea -    $100     — ((“ {{[acw088088] Or [acw088088] }}”)) Redeem Free TEMU   Coupon  Code ["^" {{[acw088088] Or [acw088088] }}"^"] for  First Time User  Get a    $100     Coupon on your TEMU   order with the Coupon code " {{[acw088088] Or [acw088088] }}". You can get a Coupon by clicking on the item to purchase and entering this TEMU   Coupon  code    $100     ((“ {{[acw088088] Or [acw088088] }}”)). TEMU   New User Coupon  ((“ {{[acw088088] Or [acw088088] }})): Up To    $100     For  First Time User  Our TEMU   first-time user Coupon  codes are designed just for new customers, offering the biggest Coupons and the best deals currently available on TEMU   . To maximize your savings, download the TEMU   app and apply our TEMU   new user Coupon  during checkout. TEMU   Coupon  Codes For  First Time User  ((“ {{[acw088088] Or [acw088088] }}”)):    $100     Price Slash Have you been shopping on TEMU   for a while? Our TEMU   Coupon  for  First Time User  is here to reward you for your continued support, offering incredible Coupons on your favorite products. TEMU   Coupon  For    $100     ((“ {{[acw088088] Or [acw088088] }}”)): Get A Flat    $100     Coupon On Order Value Get ready to save big with our incredible TEMU   Coupon  for    $100    ! Our amazing TEMU      $100     Coupon  code will give you a flat    $100     Coupon on your order value, making your shopping experience even more rewarding. TEMU   Coupon  Code For    $100     ((“ {{[acw088088] Or [acw088088] }}”)): For Both New And  First Time User  Our incredible TEMU   Coupon  code for    $100     is here to help you save big on your purchases. Whether you’re a new user or an  First Time User , our    $100     code for TEMU   will give you an additional Coupon! TEMU   Coupon  Bundle ((“ {{[acw088088] Or [acw088088] }}”)): Flat    $100     + Up To    $100     Coupon Get ready for an unbelievable deal with our TEMU   Coupon  bundle for 2025! Our TEMU   Coupon  bundles will give you a flat    $100     Coupon and an additional    $100     on top of it. Free TEMU   Coupon s ((“ {{[acw088088] Or [acw088088] }}”)): Unlock Unlimited Savings! Get ready to unlock a world of savings with our free TEMU   Coupon s! We’ve got you covered with a wide range of TEMU   Coupon  code options that will help you maximize your shopping experience.       $100    % Off TEMU   Coupon s, Coupon Codes + 25% Cash Back ((“ {{[acw088088] Or [acw088088] }}”)) Redeem TEMU   Coupon  Code ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon     $100     ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon     $100     FOR  First Time User  ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon     $100     FIRST ORDER ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon     $100     REDDIT ((“ {{[acw088088] Or [acw088088] }}”)) TEMU   Coupon     $100     FOR  First Time User  REDDIT ((“ {{[acw088088] Or [acw088088] }}”)) TEMU      $100     CODE ((“ {{[acw088088] Or [acw088088] }}”)) TEMU         $100     OFF Coupon  2025 ((“ {{[acw088088] Or [acw088088] }}”)) DOMINOS       $100     RS OFF Coupon  CODE ((“ {{[acw088088] Or [acw088088] }}”)) WHAT IS A Coupon  RATE ((“ {{[acw088088] Or [acw088088] }}”)) TEMU      $100     FOR  First Time User  ((“ {{[acw088088] Or [acw088088] }}”)) TEMU      $100     FIRST ORDER ((“ {{[acw088088] Or [acw088088] }}”)) TEMU      $100     FREE SHIPPING ((“ {{[acw088088] Or [acw088088] }}”)) You can get an exclusive    $100     Coupon on your TEMU   purchase with the code [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}].This code is specially designed for new customers and offers a significant price cut on your shopping. Make your first purchase on TEMU   more rewarding by using this code to get    $100     instantly. TEMU   Coupon  Code For    $100     [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]: Get A Flat    $100     Coupon On Order Value Get ready to save big with our incredible TEMU   Coupon  for    $100    ! Our Coupon  code will give you a flat    $100     Coupon on your order value, making your shopping experience even more rewarding. Exclusive TEMU   Coupon Code [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]: Flat    $100     OFF for New and  First Time User  Using our TEMU   Coupon code you can get A£    $100     off your order and       $100    % off using our TEMU   Coupon code [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]. As a new TEMU   customer, you can save up to    $100     using this Coupon code. For returning users, our TEMU   Coupon code offers a    $100     price slash on your next shopping spree. This is our way of saying thank you for shopping with us! Best TEMU   Deals and Coupon s [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]: During 2025, TEMU   Coupon  codes offer Coupons of up to     $100     on select items, making it possible for both new and  First Time User  to get incredible deals. From    $100     deals to       $100    % Coupons, our TEMU   Coupon codes make shopping more affordable than ever. TEMU   Coupon  Code For     $100     Off [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]: For Both New And  First Time User  Free TEMU      $100     Code — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon        $100    % Off — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Memorial Day Sale -    $100     — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Free Gift Code — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU      $100    0 Off Code — [ {{[acw088088] Or [acw088088] }} ] Or [ {{[acw088088] Or [acw088088] }}] Best TEMU      $100     Off Code — [ {{[acw088088] Or [acw088088] }} ] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code first order — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code for New user — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code A   $100     — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code    $100     off — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code    $100     — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon Code 2025 — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code    $100     off — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code £   $100     — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Sign up Bonus Code — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] TEMU   Coupon  Code A£120 off — [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] Our exclusive TEMU   Coupon  code allows you to take a flat    $100     off your purchase with an added       $100    % Coupon on top. As a new TEMU   shopper, you can save up to    $100     using code [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]. Returning customers can also enjoy a    $100     Coupon on their next purchases with this code. TEMU   Coupon  Code for Your Country Sign-up Bonus TEMU      $100     Code  USA [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code  USA [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code  USA [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Japan [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Mexico [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Chile [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code  USA [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Colombia [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Malaysia [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Philippines [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code South Korea [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code  USA [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Pakistan [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Finland [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Saudi Arabia [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Qatar [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code France [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Germany [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code  USA [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off TEMU      $100     Code Israel [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}] -       $100    % off Get a    $100     Coupon on your TEMU   order with the Coupon code [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]. You can get a Coupon by clicking on the item to purchase and entering this TEMU   Coupon  code    $100     *[ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]*. TEMU   Coupon  Code [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]: Get Up To     $100     OFF In NOV 2025 Are you looking for the best TEMU   Coupon  codes to get amazing Coupons? Our TEMU   Coupon s are perfect for getting those extra savings you crave. We regularly test our Coupon  codes for TEMU   to ensure they work flawlessly, giving you a guaranteed Coupon every time. TEMU   New User Coupon  [ {{[acw088088] Or [acw088088] }}] Or [ {{[acw088088] Or [acw088088] }}]: Up To    $100     For  First Time User  Our TEMU   first-time user Coupon  codes are designed just for new customers, offering the biggest Coupons and the best deals currently available on TEMU   . To maximize your savings, download the TEMU   app and apply our TEMU   new user Coupon  during checkout. New users at TEMU   receive a    $100     Off Coupon on orders over    $100     Off Use the code [[acw088088] Or [acw088088]] during checkout to get TEMU   Coupon    $100     Off off For New Users. You n save    $100     Off off your first order with the Coupon Code available for a limited time only. Extra    $100    off for new and  First Time User  + Up to £    $100     Off % off & more. TEMU   Coupon Codes for New users- [[acw088088] Or [acw088088]] TEMU   Coupon code for New customers- [[acw088088] Or [acw088088]] TEMU   £    $100     Off Coupon Code- [[acw088088] Or [acw088088]] what are TEMU   codes- acw088088            does TEMU   give you £    $100     Off - [acw088088] Yes Verified TEMU   Coupon Code January/February 2025- {acw088088           } TEMU   New customer offer {acw088088           } TEMU   Coupon code 2025 {[acw088088] Or [acw088088]}       $100     off Coupon Code TEMU   {acw088088           } TEMU         $100    % off any order {acw088088           }       $100     dollar off TEMU   code {acw088088           } TEMU   Coupon  £    $100     Off off for New customers There are a number of Coupons and deals shoppers n take advantage of with the Teemu Coupon  Bundle [[acw088088] Or [acw088088]]. TEMU   Coupon  £    $100     Off off for New customers [[acw088088] Or [acw088088]] will save you £    $100     Off on your order. To get a Coupon, click on the item to purchase and enter the code. You n think of it as a supercharged savings pack for all your shopping needs TEMU   Coupon Code 80% off – [acw088088] Free TEMU   codes       $100    % off – [acw088088] TEMU   Coupon  £    $100     Off off – [acw088088] TEMU   buy to get ₱39 – [acw088088] TEMU   129 Coupon  bundle – [acw088088] TEMU   buy 3 to get €99 – [acw088088] Exclusive £    $100     Off Off TEMU   Coupon  Code TEMU   £    $100     Off Off Coupon Code : ([acw088088] Or [acw088088]) TEMU   Coupon  Code £    $100     Off Bundle (acw088088           ) acw088088            TEMU   £    $100     Off off Coupon Code for Exsting users : (acw088088           ) TEMU   Coupon Code £    $100     Off off Use the Coupon  code "[[acw088088] Or [acw088088]]" or "[acw088088]" to get the    $100     Coupon  bundle. On your next purchase, you will also receive a       $100    % Coupon. If you use TEMU   for your shipping, you can save some money by taking advantage of this offer. The TEMU      $100     Off Coupon  code ([acw088088] Or [acw088088]) will save you    $100     on your order. To get a Coupon, click on the item to purchase and enter the code. TEMU   offers    $100     Off Coupon  Code “[acw088088] Or [acw088088]” for  First Time User  With the    $100     Off Coupon  Bundle at TEMU  , you can get a    $100     bonus plus    $100    off any purchase if you sign up with the referral code [[acw088088] Or [acw088088]] and make a first purchase of £    $100     off or more. TEMU   Coupon Code       $100     off-{acw088088           } TEMU   Coupon Code -{acw088088           } TEMU   Coupon Code £    $100     Off off-{[acw088088] Or [acw088088]} kubonus code -{[acw088088] Or [acw088088]} Get ready to unlock a world of savings with our free TEMU   UK Coupon s! We’ve got you covered with a wide range of TEMU   UK Coupon  code options that will help you maximize your shopping experience.   $100    Off TEMU   UK Coupon s, Coupon Codes + 25% Cash Back [ acw088088           ] Yes, TEMU   offers    $100     off Coupon  code {[acw088088] Or [acw088088]} for  First Time User  You can get a    $100     bonus plus      $100     off any purchase at TEMU   with the    $100     Coupon  Bundle if you sign up with the referral code [[acw088088] Or [acw088088]] and make a first purchase of    $100     or more. If you are who wish to join TEMU  , then you should use this exclusive TEMU   Coupon  code    $100     off ([acw088088] Or [acw088088]) and get    $100     off on your purchase with TEMU  . You can get a    $100     Coupon with TEMU   Coupon  code {[acw088088] Or [acw088088]}. This exclusive offer is for  First Time User  and can be used for a    $100     reduction on your total purchase. Enter Coupon  code {[acw088088] Or [acw088088]} at checkout to avail of the Coupon. You can use the code {[acw088088] Or [acw088088]} to get a    $100     off TEMU   Coupon  as a new customer. Apply this TEMU   Coupon  code    $100     off (acw088088           ) to get a    $100     Coupon on your shopping with TEMU  . If you’re a first-time user and looking for a TEMU   Coupon  code    $100     first time user([acw088088] Or [acw088088]) then using this code will give you a flat    $100     Off and a     $100     Coupon on your TEMU   shopping. * [acw088088] Or [acw088088]: Enjoy flat      $100     off on your first TEMU   order. * acw088088           : Download the TEMU   app and get an additional      $100     off. * acw088088           : Celebrate spring with up to     $100     Coupon on selected items. * acw088088           : Score up to     $100     off on clearance items. * acw088088           : Beat the heat with hot summer savings of up to     $100     off. * [acw088088] Or [acw088088]: TEMU   UK Coupon  Code to      $100     off on Appliances at TEMU  . How to Apply TEMU   Coupon  Code? Using the TEMU   Coupon  code    $100     off is a breeze. All you need to do is follow these simple steps: 1 Visit the TEMU   website or app and browse through the vast collection of products. 2 Once you’ve added the items you wish to purchase to your cart, proceed to the checkout page. 3 During the checkout process, you’ll be prompted to enter a Coupon  code or Coupon code. 4 Type in the Coupon  code: [[acw088088] Or [acw088088]] and click “Apply.” 5 Voila! You’ll instantly see the    $100     Coupon reflected in your total purchase amount. TEMU   New User Coupon : Up To     $100     OFF For  First Time User  TEMU    First Time User ’s Coupon  codes are designed just for new customers, offering the biggest Coupons     $100     and the best deals currently available on TEMU  . To maximize your savings, download the TEMU   app and apply our TEMU   new user Coupon  during checkout. * [acw088088] Or [acw088088]: New users can get up to 80% extra off. * acw088088           : Get a massive      $100     off your first order! * acw088088           : Get 20% off on your first order; no minimum spending required. * acw088088           : Take an extra 15% off your first order on top of existing Coupons. * acw088088           : TEMU   UK Enjoy a      $100     Coupon on your entire first purchase. New users at TEMU   receive a    $100     Off Coupon on orders over    $100     Off Use the code [[acw088088] Or [acw088088]] during checkout to get TEMU   Coupon    $100     Off off For New Users. You n save    $100     Off off your first order with the Coupon Code available for a limited time only. Extra    $100    off for new and  First Time User  + Up to £    $100     Off % off & more. TEMU   Coupon Codes for New users- [[acw088088] Or [acw088088]] TEMU   Coupon code for New customers- [[acw088088] Or [acw088088]] TEMU   £    $100     Off Coupon Code- [[acw088088] Or [acw088088]] what are TEMU   codes- acw088088            does TEMU   give you £    $100     Off - [acw088088] Yes Verified TEMU   Coupon Code January/February 2025- {acw088088           } TEMU   New customer offer {acw088088           } TEMU   Coupon code 2025 {[acw088088] Or [acw088088]}       $100     off Coupon Code TEMU   {acw088088           } TEMU         $100    % off any order {acw088088           }       $100     dollar off TEMU   code {acw088088           } TEMU   Coupon  £    $100     Off off for New customers There are a number of Coupons and deals shoppers n take advantage of with the Teemu Coupon  Bundle [[acw088088] Or [acw088088]]. TEMU   Coupon  £    $100     Off off for New customers [[acw088088] Or [acw088088]] will save you £    $100     Off on your order. To get a Coupon, click on the item to purchase and enter the code. You n think of it as a supercharged savings pack for all your shopping needs TEMU   Coupon Code 80% off – [acw088088] Free TEMU   codes       $100    % off – [acw088088] TEMU   Coupon  £    $100     Off off – [acw088088] TEMU   buy to get ₱39 – [acw088088] TEMU   129 Coupon  bundle – [acw088088] TEMU   buy 3 to get €99 – [acw088088] Exclusive £    $100     Off Off TEMU   Coupon  Code TEMU   £    $100     Off Off Coupon Code : ([acw088088] Or [acw088088]) TEMU   Coupon  Code £    $100     Off Bundle (acw088088           ) acw088088            TEMU   £    $100     Off off Coupon Code for Exsting users : (acw088088           ) TEMU   Coupon Code £    $100     Off off TEMU      $100     Off OFF Coupon code ([acw088088] Or [acw088088]) will save you    $100     Off on your order. To get a Coupon, click on the item to purchase and enter the code. Yes, TEMU   offers    $100     Off Coupon  Code “[acw088088] Or [acw088088]” for  First Time User  You can get a    $100     Off bonus plus    $100    off any purchase at TEMU   with the    $100     Off Coupon  Bundle at TEMU   if you sign up with the referral code [[acw088088] Or [acw088088]] and make a first purchase of £    $100     Off or more. TEMU   Coupon Code       $100     off-{acw088088           } TEMU   Coupon Code -{acw088088           } TEMU   Coupon Code £    $100     Off off-{[acw088088] Or [acw088088]} kubonus code -{[acw088088] Or [acw088088]} Get ready to unlock a world of savings with our free TEMU   UK Coupon s! We’ve got you covered with a wide range of TEMU   UK Coupon  code options that will help you maximize your shopping experience.   $100    Off TEMU   UK Coupon s, Coupon Codes + 25% Cash Back [ acw088088           ] Yes, TEMU   offers    $100     off Coupon  code {[acw088088] Or [acw088088]} for  First Time User  You can get a    $100     bonus plus      $100     off any purchase at TEMU   with the    $100     Coupon  Bundle if you sign up with the referral code [[acw088088] Or [acw088088]] and make a first purchase of    $100     or more. If you are who wish to join TEMU  , then you should use this exclusive TEMU   Coupon  code    $100     off ([acw088088] Or [acw088088]) and get    $100     off on your purchase with TEMU  . You can get a    $100     Coupon with TEMU   Coupon  code {[acw088088] Or [acw088088]}. This exclusive offer is for  First Time User  and can be used for a    $100     reduction on your total purchase. Enter Coupon  code {[acw088088] Or [acw088088]} at checkout to avail of the Coupon. You can use the code {[acw088088] Or [acw088088]} to get a    $100     off TEMU   Coupon  as a new customer. Apply this TEMU   Coupon  code    $100     off (acw088088           ) to get a    $100     Coupon on your shopping with TEMU  . If you’re a first-time user and looking for a TEMU   Coupon  code    $100     first time user([acw088088] Or [acw088088]) then using this code will give you a flat    $100     Off and a     $100     Coupon on your TEMU   shopping. • [acw088088] Or [acw088088]: Enjoy flat      $100     off on your first TEMU   order. • [acw088088] Or [acw088088]: Download the TEMU   app and get an additional      $100     off. • [acw088088] Or [acw088088]: Celebrate spring with up to     $100     Coupon on selected items. • [acw088088] Or [acw088088]: Score up to     $100     off on clearance items. • [acw088088] Or [acw088088]: Beat the heat with hot summer savings of up to     $100     off. • [acw088088] Or [acw088088]: TEMU   UK Coupon  Code to      $100     off on Appliances at TEMU  . How to Apply TEMU   Coupon  Code? Using the TEMU   Coupon  code    $100     off is a breeze. All you need to do is follow these simple steps: 1 Visit the TEMU   website or app and browse through the vast collection of products. 2 Once you’ve added the items you wish to purchase to your cart, proceed to the checkout page. 3 During the checkout process, you’ll be prompted to enter a Coupon  code or Coupon code. 4 Type in the Coupon  code: [[acw088088] Or [acw088088]] and click “Apply.” 5 Voila! You’ll instantly see the    $100     Coupon reflected in your total purchase amount. TEMU   New User Coupon : Up To     $100     OFF For  First Time User  TEMU    First Time User ’s Coupon  codes are designed just for new customers, offering the biggest Coupons     $100     and the best deals currently available on TEMU  . To maximize your savings, download the TEMU   app and apply our TEMU   new user Coupon  during checkout. • [acw088088] Or [acw088088]: New users can get up to 80% extra off. • [acw088088] Or [acw088088]: Get a massive      $100     off your first order! • acw088088           : Get 20% off on your first order; no minimum spending required. • [acw088088] Or [acw088088]: Take an extra 15% off your first order on top of existing Coupons. • acw088088           : TEMU   UK Enjoy a      $100     Coupon on your entire first purchase. Yes, TEMU   offers    $100     off Coupon  code {[acw088088] Or [acw088088]} for  First Time User  You can get a    $100     bonus plus      $100     off any purchase at TEMU   with the    $100     Coupon  Bundle if you sign up with the referral code [[acw088088] Or [acw088088]] and make a first purchase of    $100     or more. You can get a    $100     Coupon with TEMU   Coupon  code { acw088088           }. This exclusive offer is for  First Time User  and can be used for a    $100     reduction on your total purchase. Enter Coupon  code { acw088088           } at checkout to avail of the Coupon. You can use the code { acw088088           } to get a    $100     off TEMU   Coupon  as a new customer. Apply this TEMU   Coupon  code    $100     off ([acw088088] Or [acw088088]) to get a    $100     Coupon on your shopping with TEMU  . In this article, we'll dive into how you can get    $100     off +      $100     Coupon with a TEMU   Coupon  code. Get ready to unlock amazing savings and make the most out of your shopping experience in TEMU  . TEMU   Coupon  Code    $100     Off: Flat      $100     Off With Code If you're a first-time user and looking for a TEMU   Coupon  code    $100     first time user (acw088088           ) then using this code will give you a flat    $100     Off and a      $100     Coupon on your TEMU   shopping. Our TEMU   Coupon  code is completely safe and incredibly easy to use so that you can shop confidently. Check out these five fantastic TEMU   Coupon  codes for August and September 2025: [acw088088] Or [acw088088]: Enjoy flat      $100     off on your first TEMU   order. [acw088088] Or [acw088088]: Download the TEMU   app and get an additional      $100     off. acw088088           : Celebrate spring with up to     $100     Coupon on selected items. [acw088088] Or [acw088088]: Score up to     $100     off on clearance items. [acw088088] Or [acw088088]: Beat the heat with hot summer savings of up to     $100     off. [acw088088] Or [acw088088]: TEMU   UK Coupon  Code to      $100     off on Appliances at TEMU  . These TEMU   Coupon s are valid for both new and  First Time User  so that everyone can take advantage of these incredible deals. What is TEMU   and How TEMU   Coupon  Codes Work? TEMU   is a popular online marketplace where you can find great deals using Coupon  codes and special Coupontions. Save big on purchases and earn money through their affiliate program. With various Coupon offers like the Pop-Up Sale and Coupon  Wheels, TEMU   makes shopping affordable. How to Apply TEMU   Coupon  Code? Using the TEMU   Coupon  code    $100     off is a breeze. All you need to do is follow these simple steps: Visit the TEMU   website or app and browse through the vast collection of products. Once you've added the items you wish to purchase to your cart, proceed to the checkout page. During the checkout process, you'll be prompted to enter a Coupon  code or Coupon code. Type in the Coupon  code: [acw088088] and click "Apply." Voila! You'll instantly see the    $100     Coupon reflected in your total purchase amount. TEMU   New User Coupon : Up To 80% OFF For  First Time User  TEMU    First Time User 's Coupon  codes are designed just for new customers, offering the biggest Coupons and the best deals currently available on TEMU  . To maximize your savings, download the TEMU   app and apply our TEMU   new user Coupon  during checkout. [acw088088] Or [acw088088]: New users can get up to 80% extra off. [acw088088] Or [acw088088]: Get a massive      $100     off your first order! [acw088088] Or [acw088088]: Get 20% off on your first order; no minimum spending required. acw088088          : Take an extra 15% off your first order on top of existing Coupons. [acw088088] Or [acw088088]: TEMU   UK Enjoy a      $100     Coupon on your entire first purchase. We regularly test and verify these TEMU   first-time customer Coupon  codes to ensure they work perfectly for you. So, grab your favorite Coupon  code and start shopping today. TEMU   Coupon  Code    $100     Off For  First Time User  If you are who wish to join TEMU  , then you should use this exclusive TEMU   Coupon  code    $100     off ([acw088088] Or [acw088088]) and get    $100     off on your purchase with TEMU  . The    $100     off code for TEMU   is ([acw088088] Or [acw088088]). Remember to enter this code during the checkout process to enjoy the    $100     Coupon on your purchase. Verified TEMU   Coupon  Codes For August and September 2025 TEMU   Coupon  code    $100     off - ([acw088088] Or [acw088088])    $100     Off TEMU   Coupon  code - [acw088088] Or [acw088088]    $100    Off TEMU   Coupon  code - ([acw088088] Or [acw088088]) Flat     $100     Off TEMU   exclusive code - ([acw088088] Or [acw088088]) TEMU       $100     Coupon Code: ([acw088088] Or [acw088088]) TEMU   Coupon  Codes For  First Time User :      $100     Coupon Code To get the most out of your shopping experience, download the TEMU   app and apply our TEMU   Coupon  codes for  First Time User  at checkout. Check out these five fantastic TEMU   Coupon s for  First Time User : [acw088088] Or [acw088088]: Slash      $100     off your order as a token of our appreciation! [acw088088] Or [acw088088]: Enjoy a      $100     Coupon on your next purchase. [acw088088] Or [acw088088]: Get an extra 25% off on top of existing Coupons. [acw088088] Or [acw088088]: Loyal TEMU   shoppers from UAE can take      $100     off their entire order. Our TEMU   Coupon  code for  First Time User  in 2025 will also provide you with unbeatable savings on top of already amazing Coupons. What is The Best TEMU   Coupon  Code    $100     Off? The best TEMU   Coupon  code for    $100     off is ([acw088088] Or [acw088088]) which can effectively give you a    $100     TEMU   Coupon  bundle while shopping.
    • Hi everyone, I’m working on a custom rocket entity in Forge 1.20.1. During flight, I’m trying to spawn flame and smoke particles that trail behind the rocket, like in Ad Astra or Galacticraft. I’m using ServerLevel.sendParticles() with calculated Y-offsets far below the rocket's base (e.g., getY() - 2.5), so the particles should clearly appear under the rocket thruster. ❗The Problem: Even though I spawn the particles several blocks below the rocket, they still start rising and eventually collide with the rocket from below. It's like the particles are moving upward with the rocket, even though their Y position is set in absolute world coordinates (not relative to the rocket). This causes the trail to look broken, unrealistic, and eventually the flames just slam into the rocket's base, defeating the effect. 🔍 What I’ve Tried: Double-checked that I’m using server.sendParticles(...) with proper world coordinates. Increased vertical offset (up to -3 blocks or more). Spawned debug markers (armor stands) and verified their position is correctly placed far below. Tried spawning trail particles after calling move(MoverType.SELF, ...). Confirmed this only happens when the rocket is moving upwards — at rest, particles stay where they’re supposed to. 🔥 Code Snippet:   double rocketBottomY = this.getY() - 2.5; double trailSpacing = 0.12; for (int i = 0; i < 40; i++) {     double offsetX = (random.nextDouble() - 0.5) * 0.2;     double offsetZ = (random.nextDouble() - 0.5) * 0.2;     double flameY = rocketBottomY - (i * trailSpacing);     server.sendParticles(ParticleTypes.FLAME,             this.getX() + offsetX,             flameY,             this.getZ() + offsetZ,             3, 0.0, 0.0, 0.0, 0.01); }   No matter how far I place the flameY below, it still starts drifting upward with the rocket. I’m not applying velocity to the particles (0.0 on Y), so I have no idea what’s making them rise and then crash into the rock   ❓Question Has anyone dealt with this before? How do mods like Galacticraft or Ad Astra keep their flame trails pinned to the world while the rocket moves up? Is this a side-effect of how Forge or Minecraft queues particle updates for moving entities?
    • But can you load this schematic with worldedit? Or is it a nbt file?
  • Topics

×
×
  • Create New...

Important Information

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