Skip to content

v2.3.0

Latest

Choose a tag to compare

@vLuckyyy vLuckyyy released this 06 Oct 17:52
· 2 commits to master since this release

EternalCombat v2

✨ Enhancements

  • 🎮 Minecraft 1.21.9 support
    Added full support for Minecraft version 1.21.9.
  • ⚙️ Folia server support
    EternalCombat now fully supports Folia-based servers, improving performance and stability on multi-threaded environments.

🐛 Fixes

  • 🧰 Fixed Update notification
    Fixed an issue where the update notification sent a warning to the console due to rate limiting.
  • 🧭 Region priority sorting fix
    Fixed an issue with region priority sorting to ensure correct handling of overlapping regions.

👨‍🏭 Developer API

To use the EternalCombat API, first add the EternalCode repository to your project.
You can find the latest version here.

1. Add Repository

Gradle (Kotlin DSL):

maven("https://repo.eternalcode.pl/releases")

Maven:

<repository>
    <id>eternalcode-reposilite-releases</id>
    <url>https://repo.eternalcode.pl/releases</url>
</repository>

2. Add Dependency

Gradle:

compileOnly("com.eternalcode:eternalcombat-api:2.3.0")

Maven:

<dependency>
    <groupId>com.eternalcode</groupId>
    <artifactId>eternalcombat-api</artifactId>
    <version>2.3.0</version>
    <scope>provided</scope>
</dependency>