Skip to content

Commit

Permalink
Fixed enough issues to get it to build
Browse files Browse the repository at this point in the history
  • Loading branch information
UselessBullets committed Dec 10, 2024
1 parent ce184fa commit 5cc37fd
Show file tree
Hide file tree
Showing 12 changed files with 189 additions and 142 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version = project.mod_version

loom {
noIntermediateMappings()
customMinecraftMetadata.set("https://nightly.betterthanadventure.net/bta-${project.bta_version}-manifest.json")
customMinecraftMetadata.set("https://github.com/Turnip-Labs/bta-manifest-repo/releases/download/v${project.bta_version}/${project.bta_version}.json")
}

repositories {
Expand All @@ -44,17 +44,17 @@ repositories {
url = 'https://maven.thesignalumproject.net/infrastructure'
}
ivy {
url = "https://github.com/Better-than-Adventure"
url = "https://downloads.betterthanadventure.net/bta-client/${project.bta_channel}/"
patternLayout {
artifact "[organisation]/releases/download/v[revision]/[module].jar"
artifact "/v[revision]/client.jar"
m2compatible = true
}
metadataSources { artifact() }
}
ivy {
url = "https://nightly.betterthanadventure.net"
url = "https://downloads.betterthanadventure.net/bta-server/${project.bta_channel}/"
patternLayout {
artifact "/bta-[revision]-client.jar"
artifact "/v[revision]/server.jar"
m2compatible = true
}
metadataSources { artifact() }
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
org.gradle.jvmargs=-Xmx2G

# BTA
bta_version=nightly-2024-10-04
bta_version=7.3-pre1
bta_channel=prerelease

# Loader
loader_version=0.15.6-babric.6-bta
Expand Down
1 change: 1 addition & 0 deletions src/main/java/turniplabs/halplibe/HalpLibe.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

public class HalpLibe implements ModInitializer, PreLaunchEntrypoint{
public static final String MOD_ID = "halplibe";
public static final String LEGACY_NAMESPACE = "halplibe_legacy";
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
public static final boolean isClient = FabricLoader.getInstance().getEnvironmentType().equals(EnvType.CLIENT);
public static final TomlConfigHandler CONFIG;
Expand Down
Loading

0 comments on commit 5cc37fd

Please sign in to comment.