Skip to content

Commit

Permalink
chore Up protocol version to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
benwoo1110 committed Feb 16, 2023
1 parent 3da1b7e commit 8bdb45a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
* The implementation of the Multiverse-{@link MVCore}.
*/
public class MultiverseCore extends JavaPlugin implements MVCore {
private static final int PROTOCOL = 24;
private static final int PROTOCOL = 50;

// Setup various managers
private final AnchorManager anchorManager = new AnchorManager(this);
Expand Down Expand Up @@ -258,7 +258,7 @@ public MVCore getCore() {
*/
@Override
public int getProtocolVersion() {
return MultiverseCore.PROTOCOL;
return PROTOCOL;
}

/**
Expand Down

0 comments on commit 8bdb45a

Please sign in to comment.