Skip to content

Commit

Permalink
Update for Minecraft 1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgH93 committed Mar 4, 2022
1 parent 53e99e1 commit a165ca9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Minepacks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>PluginLib</artifactId>
<version>1.0.35-SNAPSHOT</version>
<version>1.0.36-SNAPSHOT</version>
</dependency>
<!-- BadRabbit -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

public class MagicValues
{
public static final String MIN_PCGF_PLUGIN_LIB_VERSION = "1.0.35-SNAPSHOT";
public static final String MIN_PCGF_PLUGIN_LIB_VERSION = "1.0.36-SNAPSHOT";
public static final MCVersion MIN_MC_VERSION_FOR_UPDATES = MCVersion.MC_1_8;
}
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void onEnable()

private boolean checkMcVersion()
{
if(MCVersion.is(MCVersion.UNKNOWN) || !MCVersion.isUUIDsSupportAvailable() || MCVersion.isNewerThan(MCVersion.MC_NMS_1_18_R1))
if(MCVersion.is(MCVersion.UNKNOWN) || !MCVersion.isUUIDsSupportAvailable() || MCVersion.isNewerThan(MCVersion.MC_NMS_1_18_R2))
{
this.warnOnVersionIncompatibility();
this.setEnabled(false);
Expand Down Expand Up @@ -407,4 +407,4 @@ public boolean isBackpackItem(final @Nullable ItemStack itemStack)
{
return new Version(getDescription().getVersion());
}
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<packaging>pom</packaging>

<properties>
<revision>2.4.4-SNAPSHOT</revision>
<revision>2.4.5</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

Expand Down

0 comments on commit a165ca9

Please sign in to comment.