fix bad import
All checks were successful
/ test (push) Successful in 58s
/ deploy (push) Successful in 1m2s

This commit is contained in:
kento2 2026-08-29 02:16:40 +02:00
parent c03afc9ddf
commit b8fbda94fc
2 changed files with 3 additions and 3 deletions

View file

@ -1,2 +1,2 @@
GROUP = "site.lab0x13.scrow" GROUP = "site.lab0x13.scrow"
VERSION = "1.0.0" VERSION = "1.0.1"

View file

@ -8,11 +8,11 @@ import com.velocitypowered.api.proxy.ProxyServer;
import site.lab0x13.scrow.commands.model.CommandContext; import site.lab0x13.scrow.commands.model.CommandContext;
import site.lab0x13.scrow.commands.model.SuggestionProvider; import site.lab0x13.scrow.commands.model.SuggestionProvider;
import site.lab0x13.scrow.commands.model.argument.ArgumentType; import site.lab0x13.scrow.commands.model.argument.ArgumentType;
import suggestionprovider.PlayerSuggestionProvider; import site.lab0x13.scrow.commands.velocity.suggestionprovider.PlayerSuggestionProvider;
import java.util.UUID; import java.util.UUID;
public class PlayerArgumentType<C extends CommandSource & CommandContext<C>> implements ArgumentType<C, Player> { public class PlayerArgumentType<C extends CommandContext<C>> implements ArgumentType<C, Player> {
private final ProxyServer server; private final ProxyServer server;