Fixed messups

modified:   NadekoBot.iss
	modified:   docs/Readme.md
	modified:   docs/index.md
	modified:   src/NadekoBot/Modules/Help/Help.cs
This commit is contained in:
Master Kwoth 2017-06-11 14:19:58 +02:00
parent 2bc6052a5b
commit c2799f9145
4 changed files with 9 additions and 8 deletions

View File

@ -33,7 +33,7 @@ Source: "src\NadekoBot\bin\Release\netcoreapp1.1\{#target}\publish\data\*"; Dest
;Source: "readme"; DestDir: "{app}"; Flags: isreadme ;Source: "readme"; DestDir: "{app}"; Flags: isreadme
[Run] [Run]
Filename: "http://nadekobot.readthedocs.io/en/1.4/JSON%20Explanations/"; Flags: postinstall shellexec runasoriginaluser; Description: "Open setup guide" Filename: "http://nadekobot.readthedocs.io/en/latest/JSON%20Explanations/"; Flags: postinstall shellexec runasoriginaluser; Description: "Open setup guide"
Filename: "{app}\{#sysfolder}\credentials.json"; Flags: postinstall shellexec runasoriginaluser; Description: "Open credentials file" Filename: "{app}\{#sysfolder}\credentials.json"; Flags: postinstall shellexec runasoriginaluser; Description: "Open credentials file"
[Icons] [Icons]

View File

@ -9,7 +9,7 @@
###Music on the public Nadeko ###Music on the public Nadeko
- In case you got Nadeko in your server by the invitation from **Carbonitex**, our **GitHub** invite or **help (-h)**, music is disabled. - In case you got Nadeko in your server by the invitation from **Carbonitex**, our **GitHub** invite or **help (.h)**, music is disabled.
- Music is **disabled** due to large maintenance expenses, unless Kwoth is **testing** music module. - Music is **disabled** due to large maintenance expenses, unless Kwoth is **testing** music module.
- If you want to have music module on your server, you will have to **host** the bot on your PC, or any of the external servers. - If you want to have music module on your server, you will have to **host** the bot on your PC, or any of the external servers.
- How to **host** the bot, check the **guides** on the left side. - How to **host** the bot, check the **guides** on the left side.
@ -17,12 +17,12 @@
###NadekoFlowers ###NadekoFlowers
- NadekoFlowers is the **currency** of the public Nadeko. - NadekoFlowers is the **currency** of the public Nadeko.
- NadekoFlowers can be `>pick`ed after Nadeko plants a flower randomly after `>gc` has been used on a channel - NadekoFlowers can be `.pick`ed after Nadeko plants a flower randomly after `.gc` has been enabled on a channel
- You can give NadekoFlowers to other users, using the command `$give X @person`. - You can give NadekoFlowers to other users, using the command `.give X @person`.
- You can only give flowers you **own**. - You can only give flowers you **own**.
- If you want to have **unlimited** number of flowers, you will have to **host** the bot. - If you want to have **unlimited** number of flowers, you will have to **host** the bot.
- Commands `$award X @person` and `$take X @person` can only be used by the *bot owner*. - Commands `.award X @person` and `.take X @person` can only be used by the *bot owner*.
- If you `>plant` the flower, flower will be avaliable for everyone to `>pick` it. In that case you will **lose** the flower. - If you `.plant` the flower, flower will be avaliable for everyone to `.pick` it. In that case you will **lose** the flower.
###Manage Permissions ###Manage Permissions

View File

@ -21,6 +21,7 @@ If you want to contribute, be sure to PR on the **[dev][dev]** branch.
- [Linux Guide](guides/Linux Guide.md) - [Linux Guide](guides/Linux Guide.md)
- [OSX Guide](guides/OSX Guide.md) - [OSX Guide](guides/OSX Guide.md)
- [Docker Guide](guides/Docker Guide.md) - [Docker Guide](guides/Docker Guide.md)
- [From Source](guides/From Source.md)
- [Upgrading Guide](guides/Upgrading Guide.md) - [Upgrading Guide](guides/Upgrading Guide.md)
- Commands - Commands
- [Readme](Readme.md) - [Readme](Readme.md)

View File

@ -166,8 +166,8 @@ namespace NadekoBot.Modules.Help
public async Task Guide() public async Task Guide()
{ {
await ConfirmLocalized("guide", await ConfirmLocalized("guide",
"http://nadekobot.readthedocs.io/en/1.4/Commands%20List/", "http://nadekobot.readthedocs.io/en/latest/Commands%20List/",
"http://nadekobot.readthedocs.io/en/1.4/").ConfigureAwait(false); "http://nadekobot.readthedocs.io/en/latest/").ConfigureAwait(false);
} }
[NadekoCommand, Usage, Description, Aliases] [NadekoCommand, Usage, Description, Aliases]