v1.5.1
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.
- 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>
- 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>