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

@ -8,11 +8,11 @@ import com.velocitypowered.api.proxy.ProxyServer;
import site.lab0x13.scrow.commands.model.CommandContext;
import site.lab0x13.scrow.commands.model.SuggestionProvider;
import site.lab0x13.scrow.commands.model.argument.ArgumentType;
import suggestionprovider.PlayerSuggestionProvider;
import site.lab0x13.scrow.commands.velocity.suggestionprovider.PlayerSuggestionProvider;
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;