Added WorldBorderAPI dependency to manage player boundaries dynamically during game phases. Updated game phases, respawn mechanics, and class selection to utilize the WorldBorderAPI. Reworked related components to improve boundary handling, ensuring consistent gameplay flow and preparation for future enhancements.
20 lines
501 B
Plaintext
20 lines
501 B
Plaintext
rootProject.name = "CaptureTheFlag"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven("https://repo.destro.xyz/snapshots") // Altitude - Galaxy
|
|
maven { // WorldBorderAPI
|
|
name = "eldonexus"
|
|
url = uri("https://eldonexus.de/repository/maven-releases/")
|
|
}
|
|
}
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
}
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
} |