mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-04 00:45:57 +00:00
Merge pull request #221 from PolyhedralDev/dev/bukkit-1.17
Bump Paper API version to 1.17, implement custom world height support on Bukkit.
This commit is contained in:
commit
b15ec9a215
@ -15,7 +15,7 @@ configureCommon()
|
|||||||
|
|
||||||
group = "com.dfsek.terra.bukkit"
|
group = "com.dfsek.terra.bukkit"
|
||||||
|
|
||||||
val mcVersion = "1.16.5"
|
val mcVersion = "1.17"
|
||||||
val testDir = "target/server"
|
val testDir = "target/server"
|
||||||
val testMem = "3G"
|
val testMem = "3G"
|
||||||
|
|
||||||
@ -25,7 +25,7 @@ val purpurURL = "https://ci.pl3x.net/job/Purpur/lastSuccessfulBuild/artifact/fin
|
|||||||
dependencies {
|
dependencies {
|
||||||
"shadedApi"(project(":common"))
|
"shadedApi"(project(":common"))
|
||||||
|
|
||||||
"compileOnly"("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT")
|
"compileOnly"("io.papermc.paper:paper-api:1.17-R0.1-SNAPSHOT")
|
||||||
"shadedImplementation"("io.papermc:paperlib:1.0.5")
|
"shadedImplementation"("io.papermc:paperlib:1.0.5")
|
||||||
|
|
||||||
"shadedImplementation"("org.bstats:bstats-bukkit:1.7")
|
"shadedImplementation"("org.bstats:bstats-bukkit:1.7")
|
||||||
|
@ -70,7 +70,7 @@ public class BukkitWorld implements World {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getMinHeight() {
|
public int getMinHeight() {
|
||||||
return 0;
|
return delegate.getMinHeight();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user