Updated readme & removed stuff from conig

This commit is contained in:
coolGi2007
2021-12-10 01:21:04 +00:00
parent 880559f94a
commit 43d9b41648
2 changed files with 10 additions and 2 deletions
+6
View File
@@ -69,6 +69,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
@@ -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);
}
}
@@ -524,4 +526,4 @@ public abstract class ConfigGui {
return fieldAttributes.getAnnotation(Entry.class) == null;
}
}
}
}