Skip to content

Commit

Permalink
Update pp.js
Browse files Browse the repository at this point in the history
  • Loading branch information
OOF2510 authored Jun 5, 2024
1 parent 60aba16 commit 457e0e6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions cmds/fun/pp.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,28 @@ module.exports = {

msg.reply({ embeds: [ppEm] });
} else if (recipient.id == "463119267832004620") {
//noah
//n
response = ".";
const ppEm = new EmbedBuilder()
.setColor(config.embedColor)
.addFields({ name: `${recNick}'s pp`, value: `${response}` });

msg.reply({ embeds: [ppEm] });
} else if (recipient.id == "763480802511945789") {
//gerrardo
//g
response = "8===================================================D";
const ppEm = new EmbedBuilder()
.setColor(config.embedColor)
.addFields({ name: `${recNick}'s pp`, value: `${response}` });

msg.reply({ embeds: [ppEm] });
} else if (recipient.id == "466467211545018369") {
//c
response = "8D";
const ppEm = new EmbedBuilder()
.setColor(config.embedColor)
.addFields({ name: `${recNick}'s pp`, value: `${response}` });

msg.reply({ embeds: [ppEm] });
} else {
response = responses[Math.floor(Math.random() * responses.length)];
Expand Down

0 comments on commit 457e0e6

Please sign in to comment.