mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-05 07:57:59 +01:00
Update to 1.16.4 (#3753)
This commit is contained in:
parent
295bc9f76d
commit
ea4f5cf919
2
.github/PULL_REQUEST_TEMPLATE/bug-fix.md
vendored
2
.github/PULL_REQUEST_TEMPLATE/bug-fix.md
vendored
@ -69,7 +69,7 @@ This PR fixes #nnnn.
|
|||||||
other environments, add a new line with relevant details.
|
other environments, add a new line with relevant details.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
- [ ] Paper 1.16.3 (any OS, any Java 8+ version)
|
- [ ] [Latest](https://papermc.io/downloads) Paper Version (any OS, any Java 8+ version)
|
||||||
- [ ] CraftBukkit/Spigot/Paper 1.12.2 (any OS, any Java 8+ version)
|
- [ ] CraftBukkit/Spigot/Paper 1.12.2 (any OS, any Java 8+ version)
|
||||||
- [ ] CraftBukkit 1.8.8 (any OS, any Java 8+ version)
|
- [ ] CraftBukkit 1.8.8 (any OS, any Java 8+ version)
|
||||||
|
|
||||||
|
2
.github/PULL_REQUEST_TEMPLATE/new-feature.md
vendored
2
.github/PULL_REQUEST_TEMPLATE/new-feature.md
vendored
@ -69,7 +69,7 @@ This PR closes #nnnn.
|
|||||||
other environments, add a new line with relevant details.
|
other environments, add a new line with relevant details.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
- [ ] Paper 1.16.3 (any OS, any Java 8+ version)
|
- [ ] [Latest](https://papermc.io/downloads) Paper Version (any OS, any Java 8+ version)
|
||||||
- [ ] CraftBukkit/Spigot/Paper 1.12.2 (any OS, any Java 8+ version)
|
- [ ] CraftBukkit/Spigot/Paper 1.12.2 (any OS, any Java 8+ version)
|
||||||
- [ ] CraftBukkit 1.8.8 (any OS, any Java 8+ version)
|
- [ ] CraftBukkit 1.8.8 (any OS, any Java 8+ version)
|
||||||
|
|
||||||
|
@ -29,9 +29,9 @@ public final class VersionUtil {
|
|||||||
public static final BukkitVersion v1_15_2_R01 = BukkitVersion.fromString("1.15.2-R0.1-SNAPSHOT");
|
public static final BukkitVersion v1_15_2_R01 = BukkitVersion.fromString("1.15.2-R0.1-SNAPSHOT");
|
||||||
public static final BukkitVersion v1_16_1_R01 = BukkitVersion.fromString("1.16.1-R0.1-SNAPSHOT");
|
public static final BukkitVersion v1_16_1_R01 = BukkitVersion.fromString("1.16.1-R0.1-SNAPSHOT");
|
||||||
public static final BukkitVersion v1_16_2_R01 = BukkitVersion.fromString("1.16.2-R0.1-SNAPSHOT");
|
public static final BukkitVersion v1_16_2_R01 = BukkitVersion.fromString("1.16.2-R0.1-SNAPSHOT");
|
||||||
public static final BukkitVersion v1_16_3_R01 = BukkitVersion.fromString("1.16.3-R0.1-SNAPSHOT");
|
public static final BukkitVersion v1_16_4_R01 = BukkitVersion.fromString("1.16.4-R0.1-SNAPSHOT");
|
||||||
|
|
||||||
private static final Set<BukkitVersion> supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_4_R01, v1_15_2_R01, v1_16_3_R01);
|
private static final Set<BukkitVersion> supportedVersions = ImmutableSet.of(v1_8_8_R01, v1_9_4_R01, v1_10_2_R01, v1_11_2_R01, v1_12_2_R01, v1_13_2_R01, v1_14_4_R01, v1_15_2_R01, v1_16_4_R01);
|
||||||
|
|
||||||
private static BukkitVersion serverVersion = null;
|
private static BukkitVersion serverVersion = null;
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ EssentialsX is almost a completely drop-in replacement for Essentials. However,
|
|||||||
|
|
||||||
* **EssentialsX requires Java 8 or higher.** On older versions, the plugin may not work properly.
|
* **EssentialsX requires Java 8 or higher.** On older versions, the plugin may not work properly.
|
||||||
|
|
||||||
* **EssentialsX supports Minecraft versions 1.8.8, 1.9.4, 1.10.2, 1.11.2, 1.12.2, 1.13.2, 1.14.4, 1.15.2, and 1.16.3.**
|
* **EssentialsX supports Minecraft versions 1.8.8, 1.9.4, 1.10.2, 1.11.2, 1.12.2, 1.13.2, 1.14.4, 1.15.2, and 1.16.4.**
|
||||||
|
|
||||||
|
|
||||||
Support
|
Support
|
||||||
|
2
pom.xml
2
pom.xml
@ -59,7 +59,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>spigot-api</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<version>1.16.3-R0.1-SNAPSHOT</version>
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
Loading…
Reference in New Issue
Block a user