From e75f23557bcbab094f9e9ac257990b1c0ab3baa6 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Sun, 25 Jun 2017 06:18:23 +0200 Subject: [PATCH] Small addition to docs --- docs/JSON Explanations.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/JSON Explanations.md b/docs/JSON Explanations.md index bf84432d..d83e97b3 100644 --- a/docs/JSON Explanations.md +++ b/docs/JSON Explanations.md @@ -145,10 +145,12 @@ It should look like: - Required if the bot will be connected to more than 1500 servers. - Most likely unnecessary to change until your bot is added to more than 1500 servers. - **ShardRunCommand** - - Required if you're sharding your bot on windows using .exe, or in a custom way. + - Command with which to run shards 1+ + - Required if you're sharding your bot on windows using .exe, or in a custom way. - This internally defaults to `dotnet` - For example, if you want to shard your NadekoBot which you installed using windows installer, you would want to set it to something like this: `C:\Program Files\NadekoBot\system\NadekoBot.exe` - **ShardRunArguments** + - Arguments to the shard run command - Required if you're sharding your bot on windows using .exe, or in a custom way. - This internally defaults to `run -c Release -- {0} {1} {2}` which will be enough to run linux and other 'from source' setups - {0} will be replaced by the `shard ID` of the shard being ran, {1} by the shard 0's process id, and {2} by the port shard communication is happening on