3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-20 16:25:03 +00:00

renamed mention icon variable and added comment to first rolePerms replace

This commit is contained in:
Almeida 2021-05-05 02:17:33 +01:00
parent e347daa0d0
commit 6d344474d3

View file

@ -6,7 +6,7 @@ import moment from "moment-timezone";
import humanizeDuration from "humanize-duration";
import { TimeAndDatePlugin } from "../../TimeAndDate/TimeAndDatePlugin";
const MENTION = "https://cdn.discordapp.com/attachments/705009450855039042/839284872152481792/mention.png";
const MENTION_ICON = "https://cdn.discordapp.com/attachments/705009450855039042/839284872152481792/mention.png";
export async function getRoleInfoEmbed(
pluginData: GuildPluginData<UtilityPluginType>,
@ -19,7 +19,7 @@ export async function getRoleInfoEmbed(
embed.author = {
name: `Role: ${role.name}`,
icon_url: MENTION,
icon_url: MENTION_ICON,
};
embed.color = role.color;
@ -38,6 +38,7 @@ export async function getRoleInfoEmbed(
const rolePerms = Object.keys(role.permissions.json)
.map(p =>
p
// Voice channel related permission names start with 'voice'
.replace(/^voice/i, "")
.replace(/([a-z])([A-Z])/g, "$1 $2")
.toLowerCase()