Skip to content

Commit

Permalink
Update to 1.20.4 (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFrydae authored Dec 22, 2023
1 parent e1ff2fa commit 1722978
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.4
loader_version=0.14.22
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.1
loader_version=0.15.1

# Mod Properties
mod_version = 1.1.9
mod_version = 1.1.10
maven_group = link.infra.borderlessmining
archives_base_name = borderless-mining

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.90.0+1.20.2
modmenu_version=8.0.0
fabric_version=0.91.2+1.20.4
modmenu_version=9.0.0-pre.1

# Publishing metadata
curseforge_id=310205
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected ConfigScreen(Text title, Screen parent) {

@Override
protected final void init() {
entries = new ConfigListWidget(client, width, height, 32, height - 32, 25);
entries = new ConfigListWidget(client, width, height - 64, 32, 25);
addElements();
addDrawableChild(entries);
addDrawableChild(ButtonWidget.builder(ScreenTexts.DONE, (button) -> {save(); client.setScreen(parent);})
Expand All @@ -45,8 +45,8 @@ protected final void init() {
}

private static class ConfigListWidget extends ElementListWidget<ConfigListEntry> {
public ConfigListWidget(MinecraftClient minecraftClient, int width, int height, int top, int bottom, int itemHeight) {
super(minecraftClient, width, height, top, bottom, itemHeight);
public ConfigListWidget(MinecraftClient minecraftClient, int width, int height, int y, int itemHeight) {
super(minecraftClient, width, height, y, itemHeight);
}

@Override
Expand Down

0 comments on commit 1722978

Please sign in to comment.