Skip to content

Commit

Permalink
πŸ‘‰ Added superpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
wiki-Bird committed Dec 12, 2023
1 parent 111f449 commit 2ecc37c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/commands/imgedit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const imgedit: Command = {
.addChoices(
{ name: "Speech Bubble", value: "speechbubble" },
{ name: "Rainbow", value: "rainbow" },
{ name: "Jerma", value: "jerma" },
{ name: "JermaPoint", value: "jerma" },
{ name: "SuperPoint", value:"superpoint"},
{ name: "Invert", value: "invert" },
{ name: "1984", value: "1984" },
{ name: "Cpoint", value: "cpoint"}
Expand Down Expand Up @@ -118,6 +119,10 @@ const imgedit: Command = {
const jerma = await loadImage("https://cdn.discordapp.com/attachments/669394205705240606/1095204244447043615/jerma.png");
ctx.drawImage(jerma, 0, 124, 900, 900);
}
else if (action === "superpoint") {
const superpoint = await loadImage("https://media.discordapp.net/attachments/590667063165583409/1184257470684745828/superTFpoint.png");
ctx.drawImage(superpoint, 0, 0, 1024, 1024);
}
else if (action === "cpoint") {
const serverWhitelist = ["1034219118276120586", "521856622998323202", "945166361519353877"];
if (serverWhitelist.indexOf(interaction.guild.id) === -1) {
Expand Down

0 comments on commit 2ecc37c

Please sign in to comment.