Jump to content

Fire_Blaim

Members
  • Posts

    15
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Fire_Blaim's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. Sorry I was stupid and forgot the other post. But anyway, I'll do my research and test and get back to you if I come up with anything....
  2. Okay, thanks for your help, but how do you synchronize everything when there is multiplayer ? I guess you have to use packets but it's not very clear to me...
  3. Hi all, I am creating a mod that adds an item that, when the player right-clicks on it, launches a music that follows the player and I confess that I am completely lost even if I tried to model myself on the operation of minecarts but I don't understand anything... Could someone help me? Thank you in advance and I hope I won't be a nuisance to everyone
  4. AbstractTickableSoundInstance is the class I was looking for. Thanks a lot for your help
  5. Hello, I'm addressing all the members of this forum because I wanted to adapt my mod based on Minecraft 1.8.9 which uses the class net.minecraft.client.audio.MovingSound but I see that it doesn't exist anymore. I read the documentation made by the Forge team but there are many functions with the same name and it confuses me... Any idea ? Thanks in advance and sorry to disturb everyone
  6. It was the problem... Oh gosh, I'm stupid. Sorry !
  7. If you want to check the source code, it can be found on github. : https://github.com/FireBlaim/Mod-Pixelmon-Apocalypse
  8. I used the IntelliJ IDEA debugger and the code runs correctly, so it's really weird...
  9. It seems that the code is called but it does not work at all.
  10. I corrected everything in my code, and unfortunately it still doesn't work My code : public class EnchantmentTypes { public static final EnchantmentType AXE_OR_HOE_ENCHANT = EnchantmentType.create(PixelmonApocalypseMod.MOD_ID + "_" + "axe_or_hoe", item -> item.getItem() instanceof AxeItem || item.getItem() instanceof HoeItem); } public class EnchantmentInit { public static final DeferredRegister<Enchantment> ENCHANTMENTS = DeferredRegister.create(ForgeRegistries.ENCHANTMENTS, PixelmonApocalypseMod.MOD_ID); public static final RegistryObject<Enchantment> REPLANT = ENCHANTMENTS.register("replant", ReplantEnchantment::new); } public class ReplantEnchantment extends Enchantment { public ReplantEnchantment() { super(Rarity.RARE, EnchantmentTypes.AXE_OR_HOE_ENCHANT, new EquipmentSlotType[] { EquipmentSlotType.MAINHAND }); } } @Mod(PixelmonApocalypseMod.MOD_ID) public class PixelmonApocalypseMod { public static final String MOD_ID = "pixelmon_apocalypse"; public static final Logger LOGGER = LogManager.getLogger(MOD_ID); public PixelmonApocalypseMod() { IEventBus eventBus = FMLJavaModLoadingContext.get().getModEventBus(); eventBus.addListener(this::setup); EnchantmentInit.ENCHANTMENTS.register(eventBus); } private void setup(final FMLCommonSetupEvent event) { LOGGER.info("Started !"); } }
  11. public class ReplantEnchantment extends Enchantment { public ReplantEnchantment() { super(Rarity.RARE, EnchantmentType.create("axe_or_hoe", item -> item.getClass() == AxeItem.class || item.getClass() == HoeItem.class), new EquipmentSlotType[] { EquipmentSlotType.MAINHAND }); } @Override public boolean canEnchant(ItemStack item) { return item.getItem() instanceof AxeItem || item.getItem() instanceof HoeItem; } } I tried but it didn't work, enchantment works on everything.
  12. Hi, This question sounds stupid, but I would like to know how I could create an enchantment only applicable to axes and hoes, and unfortunately I don't know how to do it. Thank you for your answer
  13. My code of my main class package fr.fireblaim.optools; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; import net.minecraftforge.fml.event.lifecycle.FMLDedicatedServerSetupEvent; import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @Mod(OpTools.MODID) public class OpTools { public static final String MODID = "optools"; public static final Logger LOGGER = LogManager.getLogger(MODID); public OpTools() { FMLJavaModLoadingContext.get().getModEventBus().addListener(this::setup); FMLJavaModLoadingContext.get().getModEventBus().addListener(this::clientSetup); FMLJavaModLoadingContext.get().getModEventBus().addListener(this::serverSetup); } private void setup(final FMLCommonSetupEvent event) { } private void clientSetup(final FMLClientSetupEvent event) { } private void serverSetup(final FMLDedicatedServerSetupEvent event) { } }
  14. I don't know why it's bugging... I start my program with a basic code and it gives me this error. I use Intellij Idea [17:58:09.276] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevclient, --fml.mcpVersion, 20190213.203750, --fml.mcVersion, 1.13.2, --fml.forgeGroup, net.minecraftforge, --fml.forgeVersion, 25.0.191, --version, MOD_DEV, --assetIndex, 1.13.1, --assetsDir, /home/fireblaim/.gradle/caches/forge_gradle/assets, --username, Dev, --accessToken, ❄❄❄❄❄❄❄❄, --userProperties, {}] [17:58:09.291] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher starting: java version 1.8.0_212 [17:58:09.515] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,fmldevclient,fmldevserver,fmluserdevserver,testharness,fmlclient,fmluserdevclient,fmlserver] [17:58:09.551] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [fml] [17:58:09.565] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [17:58:09.599] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [eventbus,object_holder_definalize,runtime_enum_extender,field_redirect_net.minecraft.potion.PotionEffect/Lnet/minecraft/potion/Potion;,accesstransformer,capability_inject_definalize,runtimedistcleaner] [17:58:09.602] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [17:58:09.606] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [17:58:09.608] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/]: Injecting tracing printstreams for STDOUT/STDERR. [17:58:09.620] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 25.0 [17:58:09.621] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 25.0 loading [17:58:09.624] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 1.0.0+41+745b6f9 [17:58:09.625] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Initializing modjar URL handler [17:58:09.628] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 0.16.0+44+853b469 [17:58:09.630] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 0.8.1+36+f1a707e [17:58:09.632] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner [17:58:09.648] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 0.4.2+19+b96f039 [17:58:09.650] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 0.11.0+23+39a30e8 [17:58:09.651] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 2 [17:58:10.213] [main/INFO] [ne.mi.fm.lo.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust [17:58:10.216] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [17:58:10.231] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [17:58:10.327] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [17:58:10.332] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [17:58:10.333] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [17:58:10.341] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing GAMEDIR directory : /home/fireblaim/Git OpToolsMod/run [17:58:10.344] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is /home/fireblaim/Git OpToolsMod/run [17:58:10.345] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing MODSDIR directory : /home/fireblaim/Git OpToolsMod/run/mods [17:58:10.346] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is /home/fireblaim/Git OpToolsMod/run/mods [17:58:10.347] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing CONFIGDIR directory : /home/fireblaim/Git OpToolsMod/run/config [17:58:10.347] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is /home/fireblaim/Git OpToolsMod/run/config [17:58:10.348] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is /home/fireblaim/Git OpToolsMod/run/config/fml.toml [17:58:10.349] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [17:58:10.577] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [17:58:10.585] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using fmluserdevclient as launch service [17:58:10.607] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data : MC Version: '1.13.2' MCP Version: '20190213.203750' Forge Version: '25.0.191' Forge group: 'net.minecraftforge' [17:58:10.622] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR forge at path /home/fireblaim/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.13.2-25.0.191_mapped_snapshot_20180921-1.13/forge-1.13.2-25.0.191_mapped_snapshot_20180921-1.13-recomp.jar [17:58:10.625] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR mcdata at path /home/fireblaim/.gradle/caches/forge_gradle/minecraft_repo/versions/1.13.2/client-extra.jar [17:58:10.626] [main/DEBUG] [ne.mi.us.FMLUserdevLaunchProvider/CORE]: Injecting maven path /home/fireblaim/.gradle/caches/forge_gradle/minecraft_user_repo [17:58:10.628] [main/DEBUG] [ne.mi.fm.lo.FMLCommonLaunchHandler/CORE]: Got mod coordinates examplemod%%/home/fireblaim/Git OpToolsMod/build/resources/main:examplemod%%/home/fireblaim/Git OpToolsMod/build/classes/java/main from env [17:58:10.647] [main/DEBUG] [ne.mi.fm.lo.FMLCommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[/home/fireblaim/Git OpToolsMod/build/resources/main, /home/fireblaim/Git OpToolsMod/build/classes/java/main]}] [17:58:10.668] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 1 language providers [17:58:10.673] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 25.0 [17:58:10.690] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Skipping adding forge jar - javafml is already present [17:58:10.704] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [17:58:10.707] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [17:58:10.719] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} [17:58:10.721] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [17:58:10.726] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [17:58:10.728] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [17:58:10.729] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/SCAN]: Scanning for Mod Locators [17:58:10.756] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path /home/fireblaim/Git OpToolsMod/out/production/resources [17:58:10.758] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path /home/fireblaim/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.13.2-25.0.191_mapped_snapshot_20180921-1.13/forge-1.13.2-25.0.191_mapped_snapshot_20180921-1.13-recomp.jar [17:58:10.771] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: [] [17:58:10.817] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (userdev classpath:null),(mods folder:null),(maven libs:null),(exploded directory:null) [17:58:10.820] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Scanning for mods and other resources to load. We know 4 ways to find mods [17:58:10.838] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator net.minecraftforge.userdev.ClasspathLocator@36916eb0 [17:58:10.854] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/SCAN]: Mod file /home/fireblaim/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.13.2-25.0.191_mapped_snapshot_20180921-1.13/forge-1.13.2-25.0.191_mapped_snapshot_20180921-1.13-recomp.jar has a manifest [17:58:10.923] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Found mod file forge-1.13.2-25.0.191_mapped_snapshot_20180921-1.13-recomp.jar of type MOD with locator net.minecraftforge.userdev.ClasspathLocator@36916eb0 [17:58:10.925] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator {ModJarsFolder locator at /home/fireblaim/Git OpToolsMod/run/mods} [17:58:10.928] [main/DEBUG] [ne.mi.fm.lo.mo.ModsFolderLocator/SCAN]: Scanning mods dir /home/fireblaim/Git OpToolsMod/run/mods for mods [17:58:10.959] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator {Maven Directory locator for mods []} [17:58:10.965] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Trying locator {ExplodedDir locator} [17:58:10.993] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/SCAN]: Mod file /home/fireblaim/Git OpToolsMod/build/resources/main is missing a manifest [17:58:10.995] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/SCAN]: Found mod file main of type MOD with locator {ExplodedDir locator} [17:58:11.004] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Parsing mod file candidate /home/fireblaim/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.13.2-25.0.191_mapped_snapshot_20180921-1.13/forge-1.13.2-25.0.191_mapped_snapshot_20180921-1.13-recomp.jar [17:58:11.122] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file /home/fireblaim/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.13.2-25.0.191_mapped_snapshot_20180921-1.13/forge-1.13.2-25.0.191_mapped_snapshot_20180921-1.13-recomp.jar with language javafml [17:58:11.127] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Parsing mod file candidate /home/fireblaim/Git OpToolsMod/build/resources/main Exception in thread "main" [17:58:11.142] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: java.lang.RuntimeException: java.net.MalformedURLException: no protocol: [17:58:11.143] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.StringUtils.toURL(StringUtils.java:51) [17:58:11.143] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.Optional.map(Optional.java:215) [17:58:11.147] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModInfo.<init>(ModInfo.java:77) [17:58:11.149] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.lambda$new$2(ModFileInfo.java:62) [17:58:11.150] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [17:58:11.151] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382) [17:58:11.152] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481) [17:58:11.154] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) [17:58:11.158] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) [17:58:11.160] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) [17:58:11.162] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) [17:58:11.167] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.<init>(ModFileInfo.java:62) [17:58:11.168] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModFileParser.loadModFile(ModFileParser.java:59) [17:58:11.169] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModFileParser.readModList(ModFileParser.java:51) [17:58:11.169] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModFile.identifyMods(ModFile.java:126) [17:58:11.170] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer.discoverMods(ModDiscoverer.java:76) [17:58:11.174] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.FMLLoader.beginModScan(FMLLoader.java:198) [17:58:11.184] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.fml.loading.FMLServiceProvider.beginScanning(FMLServiceProvider.java:90) [17:58:11.185] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.TransformationServiceDecorator.runScan(TransformationServiceDecorator.java:86) [17:58:11.186] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.TransformationServicesHandler.lambda$runScanningTransformationServices$8(TransformationServicesHandler.java:78) [17:58:11.186] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.HashMap$Values.forEach(HashMap.java:981) [17:58:11.187] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:78) [17:58:11.188] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:37) [17:58:11.188] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.Launcher.run(Launcher.java:52) [17:58:11.189] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at cpw.mods.modlauncher.Launcher.main(Launcher.java:43) [17:58:11.189] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:98) [17:58:11.190] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: Caused by: java.net.MalformedURLException: no protocol: [17:58:11.191] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.<init>(URL.java:593) [17:58:11.191] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.<init>(URL.java:490) [17:58:11.192] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.<init>(URL.java:439) [17:58:11.192] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: at net.minecraftforge.fml.loading.StringUtils.toURL(StringUtils.java:47) [17:58:11.193] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:1061]: ... 25 more Process finished with exit code 1
×
×
  • Create New...

Important Information

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