
quadraxis
Forge Modder-
Posts
201 -
Joined
-
Last visited
-
Days Won
3
Everything posted by quadraxis
-
What version of Forge are you using?
-
NullPointerException: Initializing game
quadraxis replied to Zarepheth's topic in Support & Bug Reports
There's a problem with some mod's custom model handling returning null where it shouldn't. You can try splitting the remaining modlist to find which mod is causing it, so it can be reported to the author. Otherwise, if this PR is merged, you should be able to see the offending mod in the log output. For playing the game in the meantime, you can use Forge build 2575. -
Forge Pull Request genPatches questions/problems
quadraxis replied to jabelar's topic in Modder Support
Leave changes to the json files, they happen due to Mojang tweaking libraries/assets. As for existing patches changing, it's because those files were previously changed without the patches being regenerated properly. As a result, running genPatches creates patch files that differ from the originals. Just commit the files/patches that correspond to what you've changed. -
Crash with forge 1.12.2 -1423.1.2576 and Higher
quadraxis replied to Daihok's topic in Support & Bug Reports
For reference: https://github.com/BluSunrize/ImmersiveEngineering/issues/2672 -
Java 9 isn't supported currently, you need to use Java 8 for now.
-
[1.12.2] Model rotation to 16 values without TESR?
quadraxis replied to IceMetalPunk's topic in Modder Support
The Forge blockstate format is specified here: https://gist.github.com/RainWarrior/0618131f51b8d37b80a6 Also, from looking at the vanilla wiki: https://minecraft.gamepedia.com/Model#Block_models, you can 'offset' the rotation of model elements in 22.5 degree increments. -
Can you see if a Forge client can connect if you pass -Djava.net.preferIPv4Stack=false as a launch argument (to the client)?
-
There's a PR for this issue open here: https://github.com/MinecraftForge/MinecraftForge/pull/4547
-
1.12 updated the version of various libraries, including Netty (4.0.23 -> 4.1.9). This would seem to be the culprit: https://github.com/netty/netty/issues/5657 I can't find a call setting "java.net.preferIPv4Stack" in Main.main, and the FML code dates back to July 2014 (https://github.com/MinecraftForge/FML/commit/ab52901b8b47a525e2719cf280327e97bad7f91e) so it's probably no longer needed.
-
Forge 1.12.2.2537+ SP LAN Disconnects
quadraxis replied to MokahTGS's topic in Support & Bug Reports
This should be fixed, can you try build 2548+ and see if hosting a LAN world with that version works correctly? -
Forge 1.12.2.2537+ SP LAN Disconnects
quadraxis replied to MokahTGS's topic in Support & Bug Reports
Does this happen every time? Is this a plain Forge server, or with mods installed? If there are mods, does it still happen with just Forge? -
Your getStateFromMeta and getMetaFromState methods don't match.
-
Try the alternate download links (click the "i" icon next to the main link).
-
[1.12.2] Question about git and Forge patching when making Forge PRs
quadraxis replied to jabelar's topic in Modder Support
Do not upload the decompiled Minecraft sources, with or without Forge patches applied, to the Internet. If you want version tracking for these files, then use whatever features your IDE of choice supports, or host a git/whatever repo on your local machine only. -
[19:09:02] [main/INFO]: Forge Mod Loader version 12.18.3.2185 for Minecraft 1.10.2 loading [19:09:13] [Client thread/ERROR]: The mod journeymap (JourneyMap) requires mod versions [Forge@[12.18.3.2316,)] to be available
-
Minecraft wont start with forge
quadraxis replied to lavendercoffey's topic in Support & Bug Reports
[09:49:10] [main/FATAL] [FML/]: There appear to be jars extracted into the mods directory. This is VERY BAD and will almost NEVER WORK WELL [09:49:10] [main/FATAL] [FML/]: You should place original jars only in the mods directory. NEVER extract them to the mods directory. [09:49:10] [main/FATAL] [FML/]: The directories below appear to be extracted jar files. Fix this before you continue. [09:49:10] [main/FATAL] [FML/]: Directory Forge 1.12.2 contains [FORGE.DSA, FORGE.SF, MANIFEST.MF] [09:49:10] [main/FATAL] [FML/]: #@!@# FML has crashed the game deliberately. Crash report saved to: #@!@# C:\Users\Coffey\AppData\Roaming\.minecraft\crash-reports\fml-crash-2017-10-10_09.49.10.txt There shouldn't be jar file contents in the mods directory. -
Advancements Using Wrong Function Generic Class
quadraxis replied to alexcouch's topic in Modder Support
Most likely you have an older version of Guava being used here somehow. Check the listed libraries, Minecraft 1.12 uses Guava 21. -
Java 9 is not currently supported, use Java 8 for the time being.
-
[1.12.1] [Solved] Model is shading opposite side
quadraxis replied to Silly511's topic in Modder Support
Assuming you meant 14.22.1.2479, try using build 2485+. There was a bug that could possibly be affecting this. -
[1.12.1] [Solved] Model is shading opposite side
quadraxis replied to Silly511's topic in Modder Support
What version of Forge are you using? -
[Solved][1.12.1] Proper way to contribute pull requests to Forge
quadraxis replied to jabelar's topic in Modder Support
Also check out the section on contributing in the official docs: https://mcforge.readthedocs.io/en/latest/forgedev/ -
For worldgen, you should probably pass the flag 18 (16 | 2). Otherwise the game will trigger updates for observers, which will also load chunks. In this case, vanilla isn't the best example to follow, as Mojang didn't update the flags they used for worldgen when that new flag was added.
-
You're missing a required mod, or something isn't the right version. If you read through the fml-client-latest.log file, it'll say what's missing.
-
[1.12.1] Transparent block showing white on the transparent parts
quadraxis replied to zezioen's topic in Modder Support
You need to override getBlockLayer() to return something other than SOLID. CUTOUT is probably what you want here.