mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-08 14:13:02 -04:00
deprecate old analytics system
This commit is contained in:
parent
797de47dd7
commit
8d624d1d81
4 changed files with 1 additions and 23 deletions
|
@ -63,7 +63,6 @@ module.exports = {
|
|||
|
||||
// Stickers
|
||||
if(msg.stickerItems.length){
|
||||
ingest("emoji_sticker", "command_ran");
|
||||
let s = msg.stickerItems.first()
|
||||
// lottie
|
||||
if(s.formatType == 3) return editOrReply(context, createEmbed("default", context, {
|
||||
|
@ -91,7 +90,6 @@ module.exports = {
|
|||
);
|
||||
embeds = []
|
||||
if (matches.length) {
|
||||
ingest("emoji_enlarge", "command_ran");
|
||||
|
||||
let pages = [];
|
||||
let entries = [];
|
||||
|
@ -137,7 +135,6 @@ module.exports = {
|
|||
// Emoji Mixing
|
||||
if(emoji.length >= 2){
|
||||
try{
|
||||
ingest("emoji_emojikitchen", "command_ran");
|
||||
if(emoji.length >= 3) return editOrReply(context, createEmbed("warning", context, "You cannot mix more than two emoji."));
|
||||
|
||||
let em = await emojiKitchen(emoji)
|
||||
|
@ -158,7 +155,6 @@ module.exports = {
|
|||
}
|
||||
}
|
||||
|
||||
ingest("emoji_enlarge", "command_ran");
|
||||
// Regular Emoji Handling
|
||||
if(emoji.length == 0) return await editOrReply(context, createEmbed("warning", context, "You need to specify an emoji to enlarge."))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue