Minecraft Forge 1.16.4-35.1.32, with an *ACTUALLY* secure version of Log4j.
Go to file
cpw c9fd2b6173 MinecraftForge/FML@6b0ae369eb Try and improve performance of the registry by avoiding superType.cast.
MinecraftForge/FML@dfebcafd49 Something I meant to add a long time ago, but it got overlooked. My apologies. Presend the (int) dimension ID in the serverhello packet. This should be 100% backward compatible with existing servers but bumping a server to this version will allow clients with this version as well to now login in dimensions outside the byte range. Probably fixes a bunch of mods that add dimensions.
MinecraftForge/FML@6011419fa0 Clean up my patch. Terrible person I am..
MinecraftForge/FML@c6bbd0e82d Forgot that I need a noarg ctor. I'm so rusty.
MinecraftForge/FML@6edc1635de Need to load the dimension from disk - do it without filling out the player so that the normal player loading (including events) works properly
2015-03-20 16:12:05 -04:00
fml@6edc1635de MinecraftForge/FML@6b0ae369eb Try and improve performance of the registry by avoiding superType.cast. 2015-03-20 16:12:05 -04:00
patches/minecraft/net/minecraft MinecraftForge/FML@6b0ae369eb Try and improve performance of the registry by avoiding superType.cast. 2015-03-20 16:12:05 -04:00
src Fix fluid tanks incorrectly reading NBT when empty 2015-01-17 00:36:42 +01:00
.gitattributes Step 2: The Reformation 2013-11-09 15:57:08 -06:00
.gitignore MinecraftForge/FML@b362e8a273 At the request of AbrarSyed. 2014-01-16 15:07:48 -05:00
.gitmodules Update submodule 2013-03-03 22:45:09 -05:00
CONTRIBUTING.md Update CONTRIBUTING.md 2014-03-19 23:33:36 +08:00
MinecraftForge-Credits.txt Step 3: The Rebirth 2013-11-09 21:48:53 -06:00
MinecraftForge-License.txt Small wording change in license to allow for specifc differnet licnense contributions. 2014-04-07 10:01:56 -07:00
Paulscode IBXM Library License.txt Step 3: The Rebirth 2013-11-09 21:48:53 -06:00
Paulscode SoundSystem CodecIBXM License.txt Step 3: The Rebirth 2013-11-09 21:48:53 -06:00
README.txt Update README.txt 2014-08-06 16:29:34 -04:00
build.gradle implemented crowdin support 2014-10-15 01:07:15 -05:00
eclipse-workspace-dev.zip Update to 1.7.10-pre4. 2014-06-23 21:55:16 -07:00
gradlew Make the gradle wrapper executable. 2013-11-19 22:37:52 +00:00
gradlew.bat Step 3: The Rebirth 2013-11-09 21:48:53 -06:00
settings.gradle fixed versioning and stuff 2013-11-10 00:54:57 -06:00

README.txt

*** HOW TO INSTALL ***
For Mod Users:

Download the latest installer from http://files.minecraftforge.net and follow instructions given by the installer.


For Mod Devs:

Download the latest Forge source distribution from http://files.minecraftforge.net and unzip it to a folder.
Open a command prompt, navigate to the directory where you unzipped the Forge sources, and run:
If you have Gradle: gradle setupDevWorkspace
If you DO NOT have Gradle installed:
Windows: ./gradlew.bat setupDevWorkspace
MacOS/Linux: ./gradlew setupDevWorkspace

If you wish to use the Eclipse IDE, run gradle eclipse instead of gradle setupDevWorkspace, or install the Gradle plugin for Eclipse and import the Forge source folder as a Gradle project.

To get the decompiled classes:
If you have Gradle: gradle setupDecompWorkspace
If you DO NOT have Gradle installed:
Windows: ./gradlew.bat setupDecompWorkspace
MacOS/Linux: ./gradlew setupDecompWorkspace

For Contributors: (Note: This assumes you have Gradle installed. If you don't, use ./gradlew(.bat) instead of gradle.

Clone this repository to a folder. 
Open a command prompt and navigate to the folder where you cloned this repo.
Run gradle setupForge to setup your development environment.

To use Eclipse, point your Eclipse workspace at the eclipse folder inside the repo.


Requirements (for both mod devs and contributors):
  You must have a JDK installed and accessible.
  If you do not wish to use the gradle wrapper, you can install Gradle from http://www.gradle.org/ .