Add /dbq clusters
This commit is contained in:
parent
61b6b2115a
commit
7682bc325c
@ -63,9 +63,18 @@ internal sealed class DropboxQueue : IDisposable
|
|||||||
case "crystals":
|
case "crystals":
|
||||||
BuildRequest(string.Join(" ", Enumerable.Range(8, 6).Select(x => $"{x}:9999")));
|
BuildRequest(string.Join(" ", Enumerable.Range(8, 6).Select(x => $"{x}:9999")));
|
||||||
break;
|
break;
|
||||||
|
case "clusters":
|
||||||
|
BuildRequest(string.Join(" ", Enumerable.Range(14, 6).Select(x => $"{x}:9999")));
|
||||||
|
break;
|
||||||
case "shards+crystals":
|
case "shards+crystals":
|
||||||
BuildRequest(string.Join(" ", Enumerable.Range(2, 12).Select(x => $"{x}:9999")));
|
BuildRequest(string.Join(" ", Enumerable.Range(2, 12).Select(x => $"{x}:9999")));
|
||||||
break;
|
break;
|
||||||
|
case "crystals+clusters":
|
||||||
|
BuildRequest(string.Join(" ", Enumerable.Range(8, 12).Select(x => $"{x}:9999")));
|
||||||
|
break;
|
||||||
|
case "shards+crystals+clusters":
|
||||||
|
BuildRequest(string.Join(" ", Enumerable.Range(2, 18).Select(x => $"{x}:9999")));
|
||||||
|
break;
|
||||||
case "request":
|
case "request":
|
||||||
BuildRequest(parts.Length == 2 ? parts[1] : string.Empty);
|
BuildRequest(parts.Length == 2 ? parts[1] : string.Empty);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user