change piracy warning back to text, as some people have embeds disabled

This commit is contained in:
13xforever 2019-08-30 19:18:09 +05:00
parent 43f574a3a8
commit d0d88730aa
2 changed files with 12 additions and 1 deletions

View File

@ -150,10 +150,21 @@ namespace CompatBot.EventHandlers
}
try
{
/*
botMsg = await botMsg.UpdateOrCreateMessageAsync(channel,
$"{message.Author.Mention}, please read carefully:",
embed: await result.AsEmbedAsync(client, message, source).ConfigureAwait(false)
).ConfigureAwait(false);
*/
botMsg = await botMsg.UpdateOrCreateMessageAsync(channel,
$"{message.Author.Mention}, please read carefully:\n" +
"🏴‍☠️ **Pirated content detected** 🏴‍☠️\n" +
"__You are being denied further support until you legally dump the game__.\n" +
"Please note that the RPCS3 community and its developers do not support piracy.\n" +
"Most of the issues with pirated dumps occur due to them being modified in some way " +
"that prevent them from working on RPCS3.\n" +
"If you need help obtaining valid working dump of the game you own, please read the quickstart guide at <https://rpcs3.net/quickstart>"
).ConfigureAwait(false);
}
catch (Exception e)
{

View File

@ -158,7 +158,7 @@ namespace CompatBot.Utils.ResultFormatters
"and therefore act unpredictably on RPCS3.\n" +
"If you need help obtaining legal dumps, please read [the quickstart guide](https://rpcs3.net/quickstart).";
builder.WithColor(Config.Colors.LogAlert)
.WithTitle("Pirated release detected")
.WithTitle("Pirated content detected")
.WithDescription(msg);
}
else