|
So, I can launch the Client correctly all fine, I can edit things all right, and my IDE works fine, and the changes work, but I don't know how the Recompile works, does it like, make a new Jar File with my Edits? Because when I go to the Jars File to copy and paste Minecraft.Jar, the edits never go onto it, or am I being stupid. |
Answered by
PhoenixVX
Mar 8, 2025
Replies: 1 comment 4 replies
|
Changes are not compiled to a ZIP/JAR file until you run the build task. By default, the build task creates a ZIP file of all edited and added classes. With the While developing in an IDE, all classes are compiled to the |
4 replies
Answer selected by
SquidManL
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Changes are not compiled to a ZIP/JAR file until you run the build task. By default, the build task creates a ZIP file of all edited and added classes. With the
fullbuildoption, it will create a JAR file of all classes and resources.While developing in an IDE, all classes are compiled to the
binfolder.