-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS).
-
I can't understand the way to fix an error in my mod
ChampionAsh5357 replied to Walydes's topic in Modder Support
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS). -
That's because the interaction that happens on right click for tamed animals (like the wolf and cat) forces them to sit, which is a consumable action, preventing the stack logic from executing. Since the only hook to get around this is an event, you would need to subscribe to `PlayerInteractEvent$EntityInteract` and call the `#interactLivingEntity` method on your item stack there.
-
Please provide the debug.log from the logs folder. If this is determined to be a user error, then this thread will be locked since 1.12.2 is not a supported version.
-
1.16.5 Crashing As Soon As Single Player World Loads.
ChampionAsh5357 replied to GhostBear9's topic in Support & Bug Reports
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS). -
I'm assuming you are using a Chrome browser, so try using a different one.
-
[1.12.2] Failure: Build failed with an exception
ChampionAsh5357 replied to Schleimling's topic in ForgeGradle
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS). -
In general, we don't provide support for any version other than the current latest or LTS. However, I am curious whether this is a user problem or an actual issue with Forge, so I will keep this open until that is determined. Please provide your launcher_log.txt file and the debug.log in the logs folder. If the debug.log isn't present and the launcher disappears before starting, you may need to enable logs in the launcher itself and copy and paste them.
-
("Resolved")Where I can ask stuff about Forge discord?
ChampionAsh5357 replied to tigres810's topic in General Discussion
You have been unbanned on the discord. The ban is simply precedent for spamming regardless of if your account is hacked as if they remained in control of that account, it would negatively impact the server. -
Minecraft keeps crashing because of rendering overlay
ChampionAsh5357 replied to InnerKing's topic in Support & Bug Reports
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS). -
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS).
-
A better way to do this is just to have the plugin code be in a separate class and just calling a method in that class which initializes the data. Java classes are lazily loaded, so you don't need to do invoke logic at all. public void ExampleMod() { if (ModList.get().isLoaded("other_mod_id")) { // Won't be called or initialized unless the mod is present. // This is exactly how we protect from sidedness as well ExampleIntegration.load(); } }
-
Fatally missing registry entries
ChampionAsh5357 replied to enigmatica enjoyer's topic in Support & Bug Reports
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS). -
The config file probably has a lock on it which can occur if some other program is reading or writing to the file in a non-blocking fashion. You can try to close all instances of the config being opened, or you can try to delete all the config files in the `config` folder. If it still breaks, it could be that some config default provided by one of your mods is illegal and causing the parser to fail. In that case, you'll need to remove mods one by one or test in patches until your find the erroring mod.
-
Try removing OptiFine, that seems to be the most likely issue causer. We don't recommend keeping the mod, but if you would like to, make sure the version of OptiFine used is backed by the version of Forge they say it supports. Though, if it still breaks then, it's better to just remove the mod altogether.
-
Need help with forge server 1.12.2 Chroma Technology
ChampionAsh5357 replied to Mashi's topic in Support & Bug Reports
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.2 (Latest) and 1.18.2 (LTS). -
Forge 1.16.5 Rendering Problem
ChampionAsh5357 replied to ShardedGaming's topic in Support & Bug Reports
In general, we don't provide support for old versions; however, since your issue revolves around a common issue, I see no reason not to provide it. Most likely, your config is either corrupted or formatted incorrectly, so you would just need to go into the `config` folder and remove the erroring config in question. -
Says "failed to download file" in minecraft launcher
ChampionAsh5357 replied to cece's topic in Support & Bug Reports
Does this error happen in the launcher or when trying to install Forge? If the former, check to make sure the java directory the profile is pointing towards is either the one shipped with vanilla or a Java 8 jdk you have. If the latter, make sure you have the Java 8 jdk on the path environment variable.