Skip to content

Commit

Permalink
Fix mistake in compatibility detection
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgH93 committed Nov 3, 2020
1 parent 91da3b9 commit ce57d6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void onEnable()

private boolean checkMcVersion()
{
if(MCVersion.is(MCVersion.UNKNOWN) || !MCVersion.isUUIDsSupportAvailable() || MCVersion.isNewerThan(MCVersion.MC_NMS_1_16_R2))
if(MCVersion.is(MCVersion.UNKNOWN) || !MCVersion.isUUIDsSupportAvailable() || MCVersion.isNewerThan(MCVersion.MC_NMS_1_16_R3))
{
this.warnOnVersionIncompatibility();
this.setEnabled(false);
Expand Down

0 comments on commit ce57d6e

Please sign in to comment.