Bump Cosmos API to 1.21.8 and replace empty AutoSell help message with configurable value

This commit is contained in:
akastijn 2025-08-02 01:18:40 +02:00
parent 1909c6d5bc
commit e1ccfd05de
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ tasks {
}
dependencies {
compileOnly("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT") {
compileOnly("com.alttd.cosmos:cosmos-api:1.21.8-R0.1-SNAPSHOT") {
isChanging = true
}
compileOnly("com.github.milkbowl:VaultAPI:1.7") {

View File

@ -125,6 +125,6 @@ public class CommandAutoSell extends SubCommand {
@Override
public String getHelpMessage() {
return "";
return Config.AUTO_SELL_MESSAGE;
}
}