From de9c9675b941dd735fca7ed660249c4655370182 Mon Sep 17 00:00:00 2001 From: UselessBullets <80850784+UselessBullets@users.noreply.github.com> Date: Thu, 15 Feb 2024 22:48:18 -0600 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4e960b..118e824 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,13 @@ Template for making Babric mods for BTA! ## Prerequisites - JDK for Java 17 ([Eclipse Temurin](https://adoptium.net/temurin/releases/) recommended) -- IntelliJ IDEA +- [Intellij IDEA](https://www.jetbrains.com/idea/download/) (Scroll down for the free community edition, if using linux **DO NOT** use the flatpak distribution) - Minecraft Development plugin (Optional, but highly recommended) ## Setup instructions -1. Click the `Use this template` button on this repo's page above. Choose `Create a new respository`, you will be redirected to a new page. Enter your repo's name and description, and hit `Create repository`. + + +1. Click the `Use this template` button on this repo's page above. Choose `Create a new repository`, you will be redirected to a new page. Enter your repo's name and description, and hit `Create repository`. To get your project, open IntelliJ IDEA and click `Get from VCS`. Select `Repository URL` and enter your repo's url 2. After the project has finished importing, close it and open it again. @@ -24,3 +26,12 @@ Template for making Babric mods for BTA! Make sure `Build and run using` and `Run tests using` is set to `Gradle`. 5. Done! Now, all that's left is to change every mention of `examplemod` and `turniplabs` to your own mod id and mod group, respectively. Happy modding! + +## Tips + +1. If you haven't already you should join the BTA modding discord! https://discord.gg/FTUNJhswBT +2. You can set your username when launching the client run configuration by setting `--username ` in your program arguments. +3. When launching the server run configuration you may want to remove the `nogui` program argument in order to see the regular server GUI. +4. In Intellij you can double press shift or press ctrl+N to search class files, change the search from the default `Project Files` to `All Places` you can easily explore the classes for you dependencies and even BTA itself. +5. In Intellij if ctrl+left click on a field or method you can quickly get information on when and where that field or method is assign or used. +