Fixing spelling errors

This commit is contained in:
iandrice
2023-10-26 09:26:31 -04:00
parent db081fed8a
commit ebb3da0fdd
3 changed files with 12 additions and 8 deletions

View File

@@ -43,7 +43,7 @@ class CoreCog(commands.Cog, name="Core"):
@commands.Cog.listener() @commands.Cog.listener()
async def on_ready(self) -> None: async def on_ready(self) -> None:
print("The bot is now ready.") print("The SC News Bot is now ready.")
@commands.Cog.listener() @commands.Cog.listener()
async def on_message(self, message: discord.Message) -> None: async def on_message(self, message: discord.Message) -> None:
@@ -61,11 +61,11 @@ class CoreCog(commands.Cog, name="Core"):
embed = discord.Embed( embed = discord.Embed(
color=self.bot.config.embed_color, color=self.bot.config.embed_color,
title="Info", title="Info",
description="SCNewsBot is a Discord bot created for the r/starcitizen\n Discord server to help with writing news posts.", description="Empire Report is an instance of the SC News Bot created for the r/starcitizen Org Hub\n Discord server to help with writing news posts.",
)
embed.add_field(
name="Version", value=f"v{self.bot.version}+{self._get_version()}"
) )
# embed.add_field(
# name="Version", value=f"v{self.bot.version}+{self._get_version()}"
# )
embed.add_field( embed.add_field(
name="Library", value=f"discord.py v{discord.__version__}", inline=False name="Library", value=f"discord.py v{discord.__version__}", inline=False
) )

View File

@@ -7,7 +7,7 @@ import discord
from utils import can_publish_announcements from utils import can_publish_announcements
ANNOUNCEMENT_BUILDER_TIMEOUT = 1200 ANNOUNCEMENT_BUILDER_TIMEOUT = 1200
ANNOUNCEMENT_EMOJI = "👍" # <:upvote:354233015842635776> ANNOUNCEMENT_EMOJI = "<:upvote:354233015842635776>" # <:upvote:354233015842635776>
DEFAULT_IMAGE_URL = "https://media.discordapp.net/attachments/1062905729532571719/1123340546979676311/NewsDefault.jpg?width=810&height=180" DEFAULT_IMAGE_URL = "https://media.discordapp.net/attachments/1062905729532571719/1123340546979676311/NewsDefault.jpg?width=810&height=180"
INSTRUCTIONS = """\ INSTRUCTIONS = """\
1. Title should not use any formatting. 1. Title should not use any formatting.

View File

@@ -40,16 +40,20 @@ PING_PREVIEWS = """\
- JP: `Jump Point` - JP: `Jump Point`
""" """
IDS = """\ IDS = """\
**Channels** __**Channels:**__
Server News - `1113146864804573285`
Patch Notes - `585952222853201941` Patch Notes - `585952222853201941`
SC News - `569635458183856149` SC News - `569635458183856149`
General News - `803341100618219540` General News - `803341100618219540`
**Roles** __**Roles:**__
Server News - `1113152142300156004` Server News - `1113152142300156004`
Patch Notes - `620025894559547412` Patch Notes - `620025894559547412`
SC News - `620025828079697920` SC News - `620025828079697920`
General News - `803343410794594385` General News - `803343410794594385`
__**Where to post what:**__
[Check here](https://discord.com/channels/82210263440306176/611922107345141760/1113905662217441330) for a guide on what post types go where.
""" """