Fixed a performance and stability bug with club images.

This commit is contained in:
Master Kwoth
2017-10-13 03:44:29 +02:00
parent e32446335e
commit 998c048874
3 changed files with 49 additions and 32 deletions

View File

@ -110,7 +110,8 @@ namespace NadekoBot.Services
public async Task RunAsync()
{
for (int i = 0; i < _creds.TotalShards; i++)
//todo change to 0
for (int i = 1; i < _creds.TotalShards; i++)
{
var p = StartShard(i);