Skip to content

Commit

Permalink
Add support for MC 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgH93 committed Dec 11, 2019
1 parent 55dd644 commit dc3961f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>Minepacks</artifactId>
<version>2.0.11</version>
<version>2.0.12</version>

<scm>
<connection>scm:git:git@github.com:GeorgH93/Minepacks.git</connection>
Expand Down Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>PluginLib</artifactId>
<version>1.0.17-SNAPSHOT</version>
<version>1.0.18-SNAPSHOT</version>
</dependency>
<!-- BadRabbit -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/at/pcgamingfreaks/Minepacks/Bukkit/Minepacks.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void onEnable()


//region Check compatibility with used minecraft version
if(MCVersion.is(MCVersion.UNKNOWN) || MCVersion.isNewerThan(MCVersion.MC_NMS_1_14_R1))
if(MCVersion.is(MCVersion.UNKNOWN) || MCVersion.isNewerThan(MCVersion.MC_NMS_1_15_R1))
{
this.warnOnVersionIncompatibility();
this.setEnabled(false);
Expand Down

0 comments on commit dc3961f

Please sign in to comment.