fix: Updated to 1.20

This commit is contained in:
Adrian 2023-06-08 12:05:09 -05:00
parent fed2b4a66b
commit 064130cd26
No known key found for this signature in database
GPG Key ID: FB8EF84DCE1BE452
3 changed files with 5 additions and 4 deletions

View File

@ -6,8 +6,8 @@
This plugin adds the support for [Velocity](https://velocitypowered.com/) to [AuthMeReloaded](https://github.com/AuthMe/AuthMeReloaded) This plugin adds the support for [Velocity](https://velocitypowered.com/) to [AuthMeReloaded](https://github.com/AuthMe/AuthMeReloaded)
## Requirements ## Requirements
- Spigot, Paper, Pufferfish or Purpur 1.8+ - Spigot, Paper, Pufferfish or Purpur 1.8-1.19.2 && 1.19.4+
- Velocity 3.1.2+ - Velocity 3.2.0+
- Java 17+ - Java 17+
## Features ## Features

View File

@ -3,7 +3,7 @@ metadata.format.version = "1.1"
[versions] [versions]
velocity = "3.2.0-SNAPSHOT" velocity = "3.2.0-SNAPSHOT"
paper = "1.19.3-R0.1-SNAPSHOT" paper = "1.20-R0.1-SNAPSHOT"
miniplaceholders = "2.2.0" miniplaceholders = "2.2.0"
fastlogin = "1.12-SNAPSHOT" fastlogin = "1.12-SNAPSHOT"
authme = "5.6.0-SNAPSHOT" authme = "5.6.0-SNAPSHOT"

View File

@ -17,6 +17,7 @@
package io.github._4drian3d.authmevelocity.paper; package io.github._4drian3d.authmevelocity.paper;
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
import io.papermc.paper.plugin.bootstrap.PluginBootstrap; import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
import io.papermc.paper.plugin.bootstrap.PluginProviderContext; import io.papermc.paper.plugin.bootstrap.PluginProviderContext;
import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.plugin.java.JavaPlugin;
@ -25,7 +26,7 @@ import org.jetbrains.annotations.NotNull;
@SuppressWarnings("all") @SuppressWarnings("all")
public class AuthMeVelocityBootstrap implements PluginBootstrap { public class AuthMeVelocityBootstrap implements PluginBootstrap {
@Override @Override
public void bootstrap(@NotNull PluginProviderContext context) { public void bootstrap(@NotNull BootstrapContext context) {
} }