Send emojis too

master
Cristiano Pires 2 years ago
parent aaf71f581b
commit e008008ced

@ -51,7 +51,7 @@ exports.guildData = (io,bot)=>
var aux = await getSpecificGuildData(guild.id); var aux = await getSpecificGuildData(guild.id);
var roleRules = aux ? await getRoleRules(guild.id):null; var roleRules = aux ? await getRoleRules(guild.id):null;
var guildTextChannels = aux ? aux.TextChannels:null; var guildTextChannels = aux ? aux.TextChannels:null;
var emojis = aux ? aux.emojis:null;
const dataObject = const dataObject =
{ {
id:guild.id, id:guild.id,
@ -63,7 +63,8 @@ exports.guildData = (io,bot)=>
hasRem:aux.extra?true:false, hasRem:aux.extra?true:false,
memberCount:aux.extra?aux.extra.memberCount:null, memberCount:aux.extra?aux.extra.memberCount:null,
roleRules, roleRules,
guildTextChannels guildTextChannels,
emojis
}; };
resolve(dataObject); resolve(dataObject);
@ -85,9 +86,10 @@ exports.guildData = (io,bot)=>
return {guild}; return {guild};
}); });
var TextChannels = []; var TextChannels = [];
var emojis = [];
if(extra) if(extra)
{ {
for(channel of extra.channels.cache) for(var channel of extra.channels.cache)
{ {
if(channel[1].type==0) if(channel[1].type==0)
{ {
@ -98,9 +100,16 @@ exports.guildData = (io,bot)=>
}); });
} }
} }
for(var emoji of extra.emojis.cache)
{
emojis.push(
{
'id':emoji[0],
'name':emoji[1].name
});
}
} }
return {guild, extra, TextChannels, emojis};
return {guild, extra, TextChannels};
} }
async function getRoleRules(guildid) async function getRoleRules(guildid)

Loading…
Cancel
Save