Skip to content

Commit

Permalink
fix: remove halplibe & modmenu dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rootEnginear committed Apr 16, 2024
1 parent b8fec99 commit 843ffdf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Communicate with other players within a certain radius. Talking to your friends
> **Important**
> - This is a **server-side mod**. You must install it on the server.
> - Required [Babric](https://github.com/Turnip-Labs/babric-instance-repo/releases) to run the mod.
> - Required [HalpLibe](https://github.com/Turnip-Labs/bta-halplibe/releases) in BTA version 7.1 and later.
## Features

Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,15 @@ dependencies {
minecraft "bta-download-repo:bta:${project.bta_version}"
mappings loom.layered() {}

modRuntimeOnly "objects:client:43db9b498cb67058d2e12d394e6507722e71bb45" // https://piston-data.mojang.com/v1/objects/43db9b498cb67058d2e12d394e6507722e71bb45/client.jar
modRuntimeOnly "objects:client:43db9b498cb67058d2e12d394e6507722e71bb45"
// https://piston-data.mojang.com/v1/objects/43db9b498cb67058d2e12d394e6507722e71bb45/client.jar
modImplementation "fabric-loader:fabric-loader:${project.loader_version}"

// Helper library
// If you do not need Halplibe you can comment this line out or delete this line
modImplementation "com.github.Turnip-Labs:bta-halplibe:${project.halplibe_version}"
// modImplementation "com.github.Turnip-Labs:bta-halplibe:${project.halplibe_version}"

modImplementation "ModMenu:ModMenu:${project.mod_menu_version}"
// modImplementation "ModMenu:ModMenu:${project.mod_menu_version}"

implementation "org.slf4j:slf4j-api:1.8.0-beta4"
implementation "org.apache.logging.log4j:log4j-slf4j18-impl:2.16.0"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ bta_version=7.1

# Loader & Mod Menu
loader_version=0.15.6-babric.4-bta
mod_menu_version=2.0.5
#mod_menu_version=2.0.5

# HalpLibe
halplibe_version=3.5.2
#halplibe_version=3.5.2

# Mod
mod_version=1.1.0
Expand Down
6 changes: 1 addition & 5 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
],
"depends": {
"minecraft": "7.1",
"fabricloader": ">=0.15.5",
"halplibe": ">=3.5.2"
},
"suggests": {
"modmenu": ">=2.0.5"
"fabricloader": ">=0.15.5"
}
}

0 comments on commit 843ffdf

Please sign in to comment.