Skip to content

$deleteAppEmoji

$deleteAppEmoji will delete a specific application emoji.

Usage

$deleteAppEmoji[name]

Parameters

FieldTypeDescriptionRequired
namestringThe name of the emoji.true

Example(s)

This will delete the given application emoji named “leref”:

1
client.command({
2
name: "addAppEmoji",
3
code: `
4
$deleteAppEmoji[leref]
5
`
6
});