Skip to content

Commit

Permalink
[1.9.4-dev3]尝试兼容EcoEnchants,兼容Paper端的cb包修改
Browse files Browse the repository at this point in the history
  • Loading branch information
YufiriaMazenta committed May 20, 2024
1 parent 27a0d4e commit a9f2df5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import java.text.SimpleDateFormat
version = "1.9.4-dev2"
version = "1.9.4-dev3"

plugins {
`java-library`
Expand All @@ -22,6 +22,8 @@ repositories {
maven("https://r.irepo.space/maven/")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://nexus.phoenixdevt.fr/repository/maven-public/")
//EcoEnchants
maven("https://repo.auxilor.io/repository/maven-public/")
mavenCentral()
}

Expand All @@ -40,7 +42,8 @@ dependencies {
compileOnly("io.lumine:Mythic-Dist:5.3.5")
compileOnly("io.lumine:MythicLib-dist:1.6.2-SNAPSHOT")
compileOnly("net.Indyuce:MMOItems-API:6.9.5-SNAPSHOT")
implementation("com.crypticlib:CrypticLib:0.16.11")
compileOnly("com.willfp:EcoEnchants:12.5.1")
implementation("com.crypticlib:CrypticLib:0.17.6")
}

group = "com.github.yufiriamazenta"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class PluginCommand extends CommandHandler {

PluginCommand() {
super(new CommandInfo("craftorithm", new PermInfo("craftorithm.command"), new String[]{"craft", "cra"}));
super(new CommandInfo("craftorithm", new PermInfo("craftorithm.command"), new String[]{"craft", "cra", "crafto"}));
regDefaultSubCommands();
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Craft recipes management system
main: com.github.yufiriamazenta.craftorithm.Craftorithm
api-version: 1.13
load: POSTWORLD
softdepend: [ Vault, LuckPerms, PlayerPoints, PlaceholderAPI, ItemsAdder, Oraxen, MythicMobs, NeigeItems, MMOItems ]
softdepend: [ Vault, LuckPerms, PlayerPoints, PlaceholderAPI, ItemsAdder, Oraxen, MythicMobs, NeigeItems, MMOItems, EcoEnchants ]
authors: [ YufiriaMazenta ]
folia-supported: true
website: https://github.com/YufiriaMazenta/Craftorithm
Expand Down

0 comments on commit a9f2df5

Please sign in to comment.