mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-12 05:06:14 +00:00
Small changes to bot responses (#144)
* Update CompatBot/EventHandlers/LogParsingHandler.cs Co-Authored-By: Asinin3
This commit is contained in:
parent
4a743b19c6
commit
b78cdab3c0
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user