Jump to content

Recommended Posts

Posted

When forge checks for the latest version of my mod it doesn't work. I tested it by changing the version of my mod on eclipse to a different one. I looked at the log and got this:

 

[21:33:45] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[21:33:45] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA Target: null

json

 

My update.json (on github and I didn't use gist)

"homepage": "http://minecraft.curseforge.com/projects/modrops/files",
  "promos": {
    "1.8.9-latest": "0.3.0_2",
    "1.8.9-recommended": "0.3.0_2",
    "1.10-latest": "0.5.3",
    "1.10-recommended": "0.5.3"
    "1.10.2-latest": "0.5.2"
    "1.10.2-recommended": "0.5.2"
  },
  "{MinecraftVersion}: {
    "1.10: {
        "0.5.1": "Added netherrack drop for nether quartz ore. Fixed the adaptive egg recipe. Started work on the custom villager: Biomaker.
Mostly done but has only four trades."
    }
  }

Link to it: https://github.com/Orange1861/update.json/blob/master/update.json

My @mod

package orangeVillager61.MoDrops;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.oredict.OreDictionary;

@Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.VERSION, updateJSON = "{https://github.com/Orange1861/update.json/blob/master/update.json}")
public class MoDrops {

@Instance
public static MoDrops instance = new MoDrops();

@SidedProxy(clientSide="orangeVillager61.MoDrops.ClientProxy", serverSide="orangeVillager61.MoDrops.ServerProxy")
public static CommonProxy proxy;

public static final MoDropsTab tabMoDrops = new MoDropsTab("tabMoDrops");

@EventHandler
public void preInit(FMLPreInitializationEvent e) {
   proxy.preInit(e);
   Config.instance.load(e);
}

@EventHandler
public void init(FMLInitializationEvent e) {
    proxy.init(e);
}

@EventHandler
public void postInit(FMLPostInitializationEvent e) {
    proxy.postInit(e);
}
};

Posted

1) Why does your URL container {}? Thats not a valid url

2) Your json is broken. See the red errors when you view the page

3) You need to use the raw links.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

  • 3 years later...
Posted

i have a problem with forge. i have the latest version

 

 

 

[Pterodactyl Daemon] Server marked as STARTING

[Pterodactyl Daemon] Checking size of server data directory...

[Pterodactyl Daemon] Disk Usage: 91M / 0M

[Pterodactyl Daemon] Ensuring correct ownership of files.

[Pterodactyl Daemon] Running server preflight.

[Pterodactyl Daemon] Starting server container.

openjdk version "1.8.0_242"

OpenJDK Runtime Environment (build 1.8.0_242-b08)

OpenJDK 64-Bit Server VM (build 25.242-b08, mixed mode)

:/home/container$ java -Xms128M -Xmx512M -jar server.jar

[18:28:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker

[18:28:07] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker

[18:28:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker

[18:28:07] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2854 for Minecraft 1.12.2 loading

[18:28:07] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_242, running on Linux:amd64:4.15.0-96-generic, installed at /usr/local/openjdk-8

[18:28:07] [main/INFO] [FML]: Searching /home/container/./mods for mods

[18:28:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[18:28:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[18:28:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[18:28:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[18:28:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[18:28:09] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557

[18:28:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[18:28:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[18:28:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[18:28:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[18:28:10] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}

[18:28:13] [Server thread/INFO] [minecraft/DedicatedServer]: Starting minecraft server version 1.12.2

[18:28:13] [Server thread/WARN] [minecraft/DedicatedServer]: To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar"

[18:28:13] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2854 Initialized

[18:28:13] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.

=> [18:28:13] [Server thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...

[18:28:13] [Server thread/INFO] [FML]: Replaced 1227 ore ingredients

[18:28:13] [Server thread/INFO] [FML]: Searching /home/container/./mods for mods

[18:28:14] [Server thread/INFO] [FML]: Disabling mod ptrmodellib it is client side only.

[18:28:14] [Server thread/INFO] [FML]: Forge Mod Loader has identified 7 mods to load

[18:28:14] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang

> [18:28:14] [Server thread/INFO] [FML]: FML has found a non-mod file PTRLib-1.0.4.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.

[18:28:14] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, props, humans, mca] at CLIENT

[18:28:14] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, props, humans, mca] at SERVER

[18:28:14] [Server thread/INFO] [FML]: Processing ObjectHolder annotations

[18:28:14] [Server thread/INFO] [FML]: Found 1173 ObjectHolder annotations

[18:28:14] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations

[18:28:14] [Server thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[18:28:14] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[18:28:14] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json

[18:28:15] [Server thread/INFO] [com.mia.craftstudio.CSPack]: Original locale was en, switching to Locale.US

[18:28:15] [Server thread/INFO] [com.mia.craftstudio.CSPack]: Locale is now en_US

[18:28:15] [Server thread/INFO] [com.mia.craftstudio.CSPack]: Locale was restored to en

[18:28:15] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null

container:~/$

Posted
8 hours ago, JeParra said:

i have a problem with forge.

Please do not add on to a thread someone else started just because you think your issue is the same, changes are it is not.

You should start your own thread.

 

8 hours ago, JeParra said:

i have the latest version

No you don't, the latest version is 1.15.2-31.2.0 and you are still using 1.12, which is no longer supported due to age.

Please update to a modern (1.14.4/1.15.2) version to receive support.

 

More information on supported versions can be found in the LTS link at the top of every page.

  • Guest locked this topic
Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

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