Skip to content

Commit

Permalink
Bumped minimum eco version
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Jul 21, 2024
1 parent 9429e4f commit bfbdfb7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = rootProject.version

subprojects {
dependencies {
compileOnly("com.willfp:eco:6.71.0")
compileOnly("com.willfp:eco:6.73.0")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,14 @@ class LibreforgeSpigotPlugin : EcoPlugin() {
)
}

override fun createDisplayModule(): DisplayModule {
return displayModule
override fun loadDisplayModules(): List<DisplayModule> {
return listOf(
displayModule
)
}

override fun getMinimumEcoVersion(): String {
return "6.70.0"
return "6.73.0"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion loader/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
compileOnly(project(":core:common"))

compileOnly("com.willfp:eco:6.67.3")
compileOnly("com.willfp:eco:6.73.0")
compileOnly("io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ abstract class LibreforgePlugin : EcoPlugin() {
}

override fun getMinimumEcoVersion(): String {
return "6.67.3"
return "6.73.0"
}

/**
Expand Down

0 comments on commit bfbdfb7

Please sign in to comment.