This commit is contained in:
JonnyBro 2021-12-25 16:43:17 +05:00
parent 38a1677e00
commit 2fcf6c415e

View file

@ -179,7 +179,7 @@ class Activity extends Command {
.setColor(data.config.embed.color) .setColor(data.config.embed.color)
.setFooter(message.translate("general/activity:FOOTER")) .setFooter(message.translate("general/activity:FOOTER"))
.setTimestamp() .setTimestamp()
message.channel.send(embed); return message.channel.send(embed);
break; break;
default: default:
@ -189,7 +189,7 @@ class Activity extends Command {
.setColor(data.config.embed.color) .setColor(data.config.embed.color)
.setFooter(message.translate("general/activity:FOOTER")) .setFooter(message.translate("general/activity:FOOTER"))
.setTimestamp() .setTimestamp()
message.channel.send(embed); return message.channel.send(embed);
break; break;
}; };
} }