mirror of
https://github.com/GeorgH93/Minepacks.git
synced 2025-02-13 01:12:43 +01:00
Add support for MC 1.16
This commit is contained in:
parent
4cc8d5f943
commit
c5f502fdec
@ -38,7 +38,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>at.pcgamingfreaks</groupId>
|
<groupId>at.pcgamingfreaks</groupId>
|
||||||
<artifactId>PluginLib</artifactId>
|
<artifactId>PluginLib</artifactId>
|
||||||
<version>1.0.25-SNAPSHOT</version>
|
<version>1.0.26-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- BadRabbit -->
|
<!-- BadRabbit -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -19,5 +19,5 @@
|
|||||||
|
|
||||||
public class MagicValues
|
public class MagicValues
|
||||||
{
|
{
|
||||||
public static final String MIN_PCGF_PLUGIN_LIB_VERSION = "1.0.25-SNAPSHOT";
|
public static final String MIN_PCGF_PLUGIN_LIB_VERSION = "1.0.26-SNAPSHOT";
|
||||||
}
|
}
|
@ -118,7 +118,7 @@ public void onEnable()
|
|||||||
updater = new ManagedUpdater(this);
|
updater = new ManagedUpdater(this);
|
||||||
|
|
||||||
//region Check compatibility with used minecraft version
|
//region Check compatibility with used minecraft version
|
||||||
if(MCVersion.is(MCVersion.UNKNOWN) || !MCVersion.isUUIDsSupportAvailable() || MCVersion.isNewerThan(MCVersion.MC_NMS_1_15_R1))
|
if(MCVersion.is(MCVersion.UNKNOWN) || !MCVersion.isUUIDsSupportAvailable() || MCVersion.isNewerThan(MCVersion.MC_NMS_1_16_R1))
|
||||||
{
|
{
|
||||||
this.warnOnVersionIncompatibility();
|
this.warnOnVersionIncompatibility();
|
||||||
this.setEnabled(false);
|
this.setEnabled(false);
|
||||||
|
2
pom.xml
2
pom.xml
@ -7,7 +7,7 @@
|
|||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<revision>2.3.9-RC1</revision>
|
<revision>2.3.9</revision>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
Loading…
Reference in New Issue
Block a user