Skip to content

v1.5.1

Compare
Choose a tag to compare
@vLuckyyy vLuckyyy released this 14 Jan 18:55
· 8 commits to master since this release
f8d2801

Enchantments

  • Added warp-permission access feature:

    • /warp-permission add <warp> <permission> – Adds a permission to a warp. Players without the specified permission cannot teleport to the warp.
    • /warp-permission remove <warp> <permission> – Removes the specified permission from a warp.
  • Now You can use %eternalcore_online% instead of %server_online% – This helps administrators remain more invisible, preventing administrators from being counted on vanish.

Fixes

  • Fixed an error with JarRelocator on the first startup.

🚧 Developer API

To use EternalCore API, you first need to add EternalCode to your project. To do that follow these steps:
You can check the latest release number here.

  1. Add repository:

For Gradle projects use:

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

For Maven projects use:

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

For Gradle projects use:

compileOnly("com.eternalcode:eternalcore-api:1.5.1")

For Maven projects use:

<dependency>
    <groupId>com.eternalcode</groupId>
    <artifactId>eternalcore-api</artifactId>
    <version>1.5.1</version>
    <scope>provided</scope>
</dependency>