diff --git a/src/Lavalink4NET.NetCord/DiscordClientWrapper.cs b/src/Lavalink4NET.NetCord/DiscordClientWrapper.cs index 50121e45..dfea4493 100644 --- a/src/Lavalink4NET.NetCord/DiscordClientWrapper.cs +++ b/src/Lavalink4NET.NetCord/DiscordClientWrapper.cs @@ -75,7 +75,7 @@ await _client.ReadyAsync .WaitAsync(cancellationToken) .ConfigureAwait(false); - var shardCount = _client.Shard?.Count ?? 0; + var shardCount = _client.Shard?.Count ?? 1; return new ClientInformation("NetCord", _client.Id, shardCount); }