diff --git a/Readme.md b/Readme.md index 2034ea7d0..c980ab244 100644 --- a/Readme.md +++ b/Readme.md @@ -68,6 +68,12 @@ Source code uses Mojang mappings. The source code can be 'created' with the `./eclipse` command and can be found in the following path:\ `minecraft-lod-mod\build\fg_cache\mcp\ VERSION \joined\ RANDOM_STRING \patch\output.jar` +## Useful commands + +Build only Fabric: `./gradlew fabric:build`\ +Build only Forge: `./gradlew forge:build`\ +Run the Fabric client: `./gradlew fabric:runClient`\ +Run the Forge client: `./gradlew fabric:runClient` ## Open Source Acknowledgements diff --git a/common/src/main/java/com/seibel/lod/common/wrappers/config/ConfigGui.java b/common/src/main/java/com/seibel/lod/common/wrappers/config/ConfigGui.java index bb4dde917..5085a535d 100644 --- a/common/src/main/java/com/seibel/lod/common/wrappers/config/ConfigGui.java +++ b/common/src/main/java/com/seibel/lod/common/wrappers/config/ConfigGui.java @@ -393,8 +393,9 @@ public abstract class ConfigGui { public void render(PoseStack matrices, int mouseX, int mouseY, float delta) { this.renderBackground(matrices); this.list.render(matrices, mouseX, mouseY, delta); - drawCenteredString(matrices, font, title, width / 2, 15, 0xFFFFFF); +// drawCenteredString(matrices, font, title, width / 2, 15, 0xFFFFFF); + /* // TODO[CONFIG]: Fix the tooltip for (EntryInfo info : entries) { if (info.id.equals(modid) && info.category.matches(category)) { @@ -415,6 +416,7 @@ public abstract class ConfigGui { } } } + */ super.render(matrices,mouseX,mouseY,delta); } }