Posted May 21, 20205 yr I've been trying to migrate my 1.12 worldgen code over to 1.15. All the advice I have seen on similar topics is "look at how the vanilla source does it". (Swamp huts seem like a good example for my case) Where exactly can I locate the vanilla source? I seem to recall for 1.12 there was a gradle task to decompile, but doesn't seem to be one for 1.15. Edited May 21, 20205 yr by foul_owl
May 21, 20205 yr What IDE are you using? With Eclipse it is listed under Referenced Libraries, it's the forge jar that's not the launcher. (first one in my list) Not sure with IntelliJ or other IDEs.
May 21, 20205 yr Assuming you are using IntelliJ, once you import the gradle settings the Minecraft source code (along with all the other dependencies) would be under the "External Libraries" in your project. For the code it would be the 'net.minecraftforge:forge:1.X.X-X.X.X_mapped_snapshot' and for the assets (textures, json, etc.) it would be under the 'net.minecraft:client:extra:1.X.X' Intellij also provides shortcuts to getting to the source code of a file by holding control and left clicking the class, method or field. Eclipse is a somewhat similar process.
May 21, 20205 yr Author Thank you! Using IntelliJ. I was now able to successfully locate "SwampHutPiece.java"!
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.