mirror of
https://github.com/Luzifer/discord-community.git
synced 2024-11-09 15:40:03 +00:00
Wiki/Fix: Typo
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
f8ff2019a8
commit
473808dfa0
2 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ func (m modReactionRole) Setup() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m modReactionRole) extractRoles() (map[string]string, error) {
|
func (m modReactionRole) extractRoles() (map[string]string, error) {
|
||||||
// @attr reaction_roles required []string "" List of strings in format `emote=role-id[:set]`. `emote` equals a unicode Emote (✅) or a custom emote in form `:<emote-name>:<emote-id>`. `role-id` is the integer ID of the guilds role to add with this emote. If `:set` is added at the end, the role will only be added but not removed when the reaction is removed.
|
// @attr reaction_roles required []string "" List of strings in format `emote=role-id[:set]`. `emote` equals an unicode emote (✅) or a custom emote in form `:<emote-name>:<emote-id>`. `role-id` is the integer ID of the guilds role to add with this emote. If `:set` is added at the end, the role will only be added but not removed when the reaction is removed.
|
||||||
list, err := m.attrs.StringSlice("reaction_roles")
|
list, err := m.attrs.StringSlice("reaction_roles")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "getting role list")
|
return nil, errors.Wrap(err, "getting role list")
|
||||||
|
|
|
@ -116,7 +116,7 @@ Creates a post with pre-set reactions and assigns roles on reaction
|
||||||
| --------- | :--: | ---- | ------------- | ----------- |
|
| --------- | :--: | ---- | ------------- | ----------- |
|
||||||
| `discord_channel_id` | ✅ | string | | ID of the Discord channel to post the message to |
|
| `discord_channel_id` | ✅ | string | | ID of the Discord channel to post the message to |
|
||||||
| `embed_title` | ✅ | string | | Title of the embed |
|
| `embed_title` | ✅ | string | | Title of the embed |
|
||||||
| `reaction_roles` | ✅ | []string | | List of strings in format `emote=role-id[:set]`. `emote` equals a unicode Emote (✅) or a custom emote in form `:<emote-name>:<emote-id>`. `role-id` is the integer ID of the guilds role to add with this emote. If `:set` is added at the end, the role will only be added but not removed when the reaction is removed. |
|
| `reaction_roles` | ✅ | []string | | List of strings in format `emote=role-id[:set]`. `emote` equals an unicode emote (✅) or a custom emote in form `:<emote-name>:<emote-id>`. `role-id` is the integer ID of the guilds role to add with this emote. If `:set` is added at the end, the role will only be added but not removed when the reaction is removed. |
|
||||||
| `embed_color` | | int64 | `0x2ECC71` | Integer / HEX representation of the color for the embed |
|
| `embed_color` | | int64 | `0x2ECC71` | Integer / HEX representation of the color for the embed |
|
||||||
| `embed_description` | | string | | Description for the embed block |
|
| `embed_description` | | string | | Description for the embed block |
|
||||||
| `embed_thumbnail_height` | | int64 | | Height of the thumbnail |
|
| `embed_thumbnail_height` | | int64 | | Height of the thumbnail |
|
||||||
|
|
Loading…
Reference in a new issue