Skip to content

Commit a885fc3

Browse files
committed
Updated to BTA 7.1-pre2a!
1 parent 5e913ea commit a885fc3

File tree

7 files changed

+17
-8
lines changed

7 files changed

+17
-8
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ dependencies {
108108
modImplementation "fabric-loader:fabric-loader:${project.loader_version}"
109109

110110
modImplementation "bta-halplibe:halplibe:${project.halplibe_version}"
111-
modImplementation "ModMenu:ModMenu:2.0.3"
111+
modImplementation "ModMenu:ModMenu:2.0.4"
112112

113113
if(findProject(":catalyst") == null){
114114
runtimeOnly(project(path: ":energy", "configuration": "namedElements"))

effects/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ loom {
1616
dependencies {
1717
if(findProject(":catalyst") != null){
1818
implementation project(path: ':catalyst', configuration: "namedElements")
19+
} else {
20+
implementation project(path: ':', configuration: "namedElements")
1921
}
2022

2123
minecraft "bta-download-repo:bta:${project.bta_version}"
@@ -34,7 +36,7 @@ dependencies {
3436
modImplementation "fabric-loader:fabric-loader:${project.loader_version}"
3537

3638
modImplementation "bta-halplibe:halplibe:${project.halplibe_version}"
37-
modImplementation "ModMenu:ModMenu:2.0.0"
39+
modImplementation "ModMenu:ModMenu:2.0.4"
3840
}
3941

4042
processResources {

effects/src/main/java/sunsetsatellite/catalyst/CatalystEffectsClient.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import net.minecraft.client.gui.options.components.ToggleableOptionComponent;
55
import net.minecraft.client.gui.options.data.OptionsPage;
66
import net.minecraft.client.gui.options.data.OptionsPages;
7+
import net.minecraft.core.item.Item;
78
import sunsetsatellite.catalyst.effects.interfaces.mixins.IKeybinds;
89
import turniplabs.halplibe.util.ClientStartEntrypoint;
910

@@ -16,7 +17,7 @@ public void beforeClientStart() {
1617
@Override
1718
public void afterClientStart() {
1819
CatalystEffects.keybinds = ((IKeybinds) Minecraft.getMinecraft(Minecraft.class).gameSettings);
19-
OptionsPage optionsPage = new OptionsPage("gui.options.page.catalyst-effect");
20+
OptionsPage optionsPage = new OptionsPage("gui.options.page.catalyst-effect", Item.bucketWater.getDefaultStack());
2021
optionsPage
2122
.withComponent(new ToggleableOptionComponent<>(CatalystEffects.keybinds.getEffectDisplayPlaceEnumOption()));
2223
OptionsPages.register(optionsPage);

energy/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ loom {
1616
dependencies {
1717
if(findProject(":catalyst") != null){
1818
implementation project(path: ':catalyst', configuration: "namedElements")
19+
} else {
20+
implementation project(path: ':', configuration: "namedElements")
1921
}
2022

2123
minecraft "bta-download-repo:bta:${project.bta_version}"
@@ -34,7 +36,7 @@ dependencies {
3436
modImplementation "fabric-loader:fabric-loader:${project.loader_version}"
3537

3638
modImplementation "bta-halplibe:halplibe:${project.halplibe_version}"
37-
modImplementation "ModMenu:ModMenu:2.0.0"
39+
modImplementation "ModMenu:ModMenu:2.0.4"
3840
}
3941

4042
processResources {

fluids/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ loom {
1616
dependencies {
1717
if(findProject(":catalyst") != null){
1818
implementation project(path: ':catalyst', configuration: "namedElements")
19+
} else {
20+
implementation project(path: ':', configuration: "namedElements")
1921
}
2022

2123
minecraft "bta-download-repo:bta:${project.bta_version}"
@@ -34,7 +36,7 @@ dependencies {
3436
modImplementation "fabric-loader:fabric-loader:${project.loader_version}"
3537

3638
modImplementation "bta-halplibe:halplibe:${project.halplibe_version}"
37-
modImplementation "ModMenu:ModMenu:2.0.0"
39+
modImplementation "ModMenu:ModMenu:2.0.4"
3840
}
3941

4042
processResources {

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
org.gradle.jvmargs=-Xmx2G
22

33
# BTA
4-
bta_version=7.1-pre1a
4+
bta_version=7.1-pre2a
55

66
# Loader
77
loader_version=0.15.6-babric.4-bta
88

99
# HalpLibe
10-
halplibe_version=3.1.2
10+
halplibe_version=3.4.15
1111

1212
# Mod
1313
core_mod_version=1.1.5

multiblocks/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ loom {
1616
dependencies {
1717
if(findProject(":catalyst") != null){
1818
implementation project(path: ':catalyst', configuration: "namedElements")
19+
} else {
20+
implementation project(path: ':', configuration: "namedElements")
1921
}
2022

2123
minecraft "bta-download-repo:bta:${project.bta_version}"
@@ -34,7 +36,7 @@ dependencies {
3436
modImplementation "fabric-loader:fabric-loader:${project.loader_version}"
3537

3638
modImplementation "bta-halplibe:halplibe:${project.halplibe_version}"
37-
modImplementation "ModMenu:ModMenu:2.0.0"
39+
modImplementation "ModMenu:ModMenu:2.0.4"
3840
}
3941

4042
java {

0 commit comments

Comments
 (0)