From d0e69297bf21df95f144bb024e981390e7cade06 Mon Sep 17 00:00:00 2001 From: Charles Howard Date: Mon, 28 Aug 2017 14:38:58 -0400 Subject: [PATCH] Update README.md --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 4d0eb20..cae1ed8 100644 --- a/README.md +++ b/README.md @@ -11,21 +11,21 @@ Customization options are available for changing the color of the damage numbers ![Screenshot](https://i.imgur.com/C9oBhZ5.png) + ## Development Environment Setup -Download the desired version of Forge MDK from https://files.minecraftforge.net/ and unzip the MDK into a new dirctory. After the MDK is unzipped, remove the `main` folder from the `src` folder and clone this repo into the `src` directory as `main`. Then you will need to either copy or link the `build.gradle` from the repository to the root of the MDK, replacing the original one. -### Setup Example -Replace `` with the Minecraft version of the MDK (for example `~/mdk_1.10.2`) and `` with the file name of the MDK you downloaded (for example `forge-1.10.2-12.18.2.2099-mdk.zip`) +``` +git clone git@github.com:ToroCraft/ToroHealth.git +cd ToroHealth +gradle setupDecompWorkspace +``` + +To setup an Intellij environment: +``` +gradle idea +``` +To setup an Eclipse environment: ``` -mkdir ~/mdk_ -cd ~/mdk_ -cp . -unzip -rm -rf src/main -git clone https://github.com/ToroCraft/ToroHealth.git -mv build.gradle build.default.gradle -ln -s src/main/build.gradle build.gradle -./gradlew setupDecompWorkspace -./gradlew eclipse +gradle eclipse ```