Browse Source

fixed demigender pride flags in image file.

pull/65/head
Roxie Gibson 4 years ago
parent
commit
2e66c16b0e
No known key found for this signature in database
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      roxbot/cogs/image.py

+ 6
- 3
roxbot/cogs/image.py View File

@@ -150,7 +150,8 @@ class Flag:
grey = (128, 128, 128)
silver = (196, 196, 196)
pink = (254, 176, 202)
colours = (grey, silver, pink, silver, grey)
white = (255, 255, 255)
colours = (grey, silver, pink, white, pink, silver, grey)
return cls(colours=colours, name=name)

@classmethod
@@ -159,7 +160,8 @@ class Flag:
grey = (128, 128, 128)
silver = (196, 196, 196)
blue = (155, 218, 235)
colours = (grey, silver, blue, silver, grey)
white = (255, 255, 255)
colours = (grey, silver, blue, white, blue, silver, grey)
return cls(colours=colours, name=name)

@classmethod
@@ -168,7 +170,8 @@ class Flag:
grey = (128, 128, 128)
silver = (196, 196, 196)
yellow = (251, 255, 117)
colours = (grey, silver, yellow, silver, grey)
white = (255, 255, 255)
colours = (grey, silver, yellow, white, yellow, silver, grey)
return cls(colours=colours, name=name)

@classmethod

Loading…
Cancel
Save