Small changes to bot responses (#144)

* Update CompatBot/EventHandlers/LogParsingHandler.cs

Co-Authored-By: Asinin3
This commit is contained in:
Asinine 2019-01-02 16:47:38 +00:00 committed by 13xforever
parent 4a743b19c6
commit b78cdab3c0
2 changed files with 3 additions and 3 deletions

View File

@ -41,10 +41,10 @@ namespace CompatBot.EventHandlers
if (brokenDump)
await args.Channel.SendMessageAsync(
"Please follow the quickstart guide to get a proper dump of a digital title.\n" +
"Also please upload full log file instead of pasting random bits that might or might not be relevant."
"Also please upload the full RPCS3.log.gz (or RPCS3.log with a zip/rar icon) file after closing the emulator instead of pasting only a section which may be completely irrelevant."
).ConfigureAwait(false);
else
await args.Channel.SendMessageAsync($"{args.Message.Author.Mention} please upload the full log file instead of pasting some random bits that might be completely irrelevant.").ConfigureAwait(false);
await args.Channel.SendMessageAsync($"{args.Message.Author.Mention} Please upload the full RPCS3.log.gz (or RPCS3.log with a zip/rar icon) file after closing the emulator instead of pasting only a section which may be completely irrelevant.").ConfigureAwait(false);
}
}
}

View File

@ -138,7 +138,7 @@ namespace CompatBot.EventHandlers
{
case "TXT":
{
await args.Channel.SendMessageAsync($"{message.Author.Mention} please do not copy/paste logs from UI, they do not contain all the required information; ask if you do not know how to upload full log file").ConfigureAwait(false);
await args.Channel.SendMessageAsync($"{message.Author.Mention} Please upload the full RPCS3.log.gz (or RPCS3.log with a zip/rar icon) file after closing the emulator instead of copying the logs from RPCS3's interface, as it doesn't contain all the required information.").ConfigureAwait(false);
return;
}
}