diff --git a/discord/embeds.py b/discord/embeds.py index 663e9ea06..b756d55f1 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -169,6 +169,10 @@ class Embed: return self + def copy(self): + """Returns a shallow copy of the embed.""" + return Embed.from_dict(self.to_dict()) + def __len__(self): total = len(self.title) + len(self.description) for field in getattr(self, '_fields', []):