mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-11-30 21:51:07 +00:00
change piracy warning back to text, as some people have embeds disabled
This commit is contained in:
parent
43f574a3a8
commit
d0d88730aa
@ -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)
|
||||
{
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user