From 5ad88dec72b5bef063bc9a01646082b95ca53cf1 Mon Sep 17 00:00:00 2001 From: Dorukyum <53639936+Dorukyum@users.noreply.github.com> Date: Sat, 15 May 2021 09:13:12 +0300 Subject: [PATCH] Change Colour.blurple to new one This moves the old one to Colour.og_blurple. --- discord/colour.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/discord/colour.py b/discord/colour.py index 4e19f7040..4efafcd0c 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -270,10 +270,15 @@ class Colour: darker_gray = darker_grey @classmethod - def blurple(cls: Type[CT]) -> CT: + def og_blurple(cls: Type[CT]) -> CT: """A factory method that returns a :class:`Colour` with a value of ``0x7289da``.""" return cls(0x7289da) + @classmethod + def blurple(cls: Type[CT]) -> CT: + """A factory method that returns a :class:`Colour` with a value of ``0x5865F2``.""" + return cls(0x5865F2) + @classmethod def greyple(cls: Type[CT]) -> CT: """A factory method that returns a :class:`Colour` with a value of ``0x99aab5``."""