From f2c7b2e6d81b000a64de8030be09157b7b06e92d Mon Sep 17 00:00:00 2001 From: Kyber Date: Wed, 22 May 2019 01:09:31 +1000 Subject: [PATCH] Add an insert_field_at method for the embed class --- discord/embeds.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/discord/embeds.py b/discord/embeds.py index b9ae584ef..f4a0aac7f 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -422,6 +422,39 @@ class Embed: self._fields = [field] return self + + def insert_field_at(self, index, *, name, value, inline=True): + """Inserts a field before a specified index to the embed. + + This function returns the class instance to allow for fluent-style + chaining. + + .. versionadded:: 1.2.0 + + Parameters + ----------- + index: :class:`int` + The index of where to insert the field. + name: :class:`str` + The name of the field. + value: :class:`str` + The value of the field. + inline: :class:`bool` + Whether the field should be displayed inline. + """ + + field = { + 'inline': inline, + 'name': str(name), + 'value': str(value) + } + + try: + self._fields.insert(index, field) + except AttributeError: + self._fields = [field] + + return self def clear_fields(self): """Removes all fields from this embed."""