Skip to content

Commit

Permalink
Fix IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
murpii committed Sep 19, 2023
1 parent f6c8e4b commit 28c7620
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cogs/skindb.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
from io import BytesIO
from PIL import Image, ImageOps

GUILD_DDNET = 930664819303002123
CHAN_SKIN_SUBMIT = 986107035747766292
ROLE_ADMIN = 930665626370985994
ROLE_DISCORD_MOD = 934131865512730656
ROLE_SKIN_DB_CREW = 930665730091929650
GUILD_DDNET = 252358080522747904
CHAN_SKIN_SUBMIT = 985717921600929872
ROLE_ADMIN = 293495272892399616
ROLE_DISCORD_MOD = 737776812234506270
ROLE_SKIN_DB_CREW = 390516461741015040


def is_staff(member: discord.Member) -> bool:
Expand Down Expand Up @@ -256,8 +256,8 @@ async def check_message_format_and_render(self, message: discord.Message):
image_preview_message = await message.channel.send(file=file)
self.original_message_id_and_preview_message_id[message.id] = image_preview_message.id

f3_emoji = self.bot.get_emoji(933103235651223632)
f4_emoji = self.bot.get_emoji(933102663841751061)
f3_emoji = self.bot.get_emoji(346683497701834762)
f4_emoji = self.bot.get_emoji(346683496476966913)
await message.add_reaction(f3_emoji)
await message.add_reaction(f4_emoji)

Expand Down

0 comments on commit 28c7620

Please sign in to comment.