-
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. |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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
fullbuild
option, it will create a JAR file of all classes and resources.While developing in an IDE, all classes are compiled to the
bin
folder.