Just as the title says, I want to check if an account is linked in Velocity
public class GeyserPlayersUUIDSyncListener {
final Main plugin;
final ProxyServer server;
final Logger logger;
final FloodgateApi floodgateApi;
public GeyserPlayersUUIDSyncListener(Main plugin, ProxyServer server, Logger logger) {
this.plugin = plugin;
this.server = server;
this.logger = logger;
this.floodgateApi = FloodgateApi.getInstance();
}
@Subscribe
public void onPlayerGameProfileRequest(GameProfileRequestEvent e) {
if (this.floodgateApi.isFloodgatePlayer(e.getGameProfile().getId())) {
}
}
}```