Skip to content

Commit

Permalink
Explicit 1.20.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
HydrolienF committed Dec 12, 2023
1 parent 28e091c commit 9268bf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# VoidWorldGenerator
A simple minecraft plugin to generate a void world.

Compatible with `Paper`, `Spigot` & `Folia` in `1.20, 1.20.1, 1.20.2`.
Compatible with `Paper`, `Spigot` & `Folia` in `1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4`.

It can be used to prevent world generation outside of the world border.
To prevent that fully generate your world with a plugin as [Chunky](https://www.spigotmc.org/resources/chunky.81534/) then add this plugin & configure your bukkit.yml.
Expand All @@ -17,4 +17,4 @@ worlds:
```
# Build
Run `./gradlew shadowJar`
Run `./gradlew assemble`
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group="fr.formiko.voidworldgenerator"
version="1.1.0"
version="1.1.1"
description="Generate empty world."

repositories {
Expand All @@ -31,6 +31,9 @@ tasks {
relocate("org.bstats","${project.group}.bstats")
archiveFileName.set("${project.name}-${project.version}.jar")
}
assemble {
dependsOn(shadowJar)
}
compileJava {
options.encoding = Charsets.UTF_8.name() // We want UTF-8 for everything
options.release.set(17) // See https://openjdk.java.net/jeps/247 for more information.
Expand Down

0 comments on commit 9268bf9

Please sign in to comment.