chore: Up protocol version to 50

This commit is contained in:
Ben Woo 2023-02-16 11:12:19 +08:00
parent 3da1b7e8c4
commit d8fff0ae15
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ import org.bukkit.plugin.java.JavaPluginLoader;
* 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);
@ -258,7 +258,7 @@ public class MultiverseCore extends JavaPlugin implements MVCore {
*/
@Override
public int getProtocolVersion() {
return MultiverseCore.PROTOCOL;
return PROTOCOL;
}
/**