Skip to content

Commit a22251b

Browse files
authored
Merge pull request #35 from Jdubin1417/fix/typos-and-formatting
fix: correct typos and improve formatting
2 parents 4099f62 + d261e3f commit a22251b

5 files changed

Lines changed: 25 additions & 24 deletions

File tree

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
.# Discord Bot Configuration.
2-
DISCORD_TOKEN=your_bot_token_here(I won't share mine 💀💀💀)
1+
# Discord Bot Configuration
2+
DISCORD_TOKEN=your_bot_token_here
33
GUILD_ID=1263067254153805905 # For faster slash command registration during development
44

55
# Database Configuration

CHANGELOG

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,14 @@
105105

106106
## Previous Changelog
107107

108-
bot.Py
109-
/utils/codingquestions.py
110-
/cogs/afk.py
111-
/cogs/bump.py
112-
/cogs/codebuddy_help.py
113-
/cogs/codebuddy_leaderboard.py
114-
/cogs/codebuddy_quiz.py
115-
/cogs/misc.py
116-
/cogs/rules.py
117-
/cogs/utility_extras.py
108+
Files updated in earlier versions:
109+
- bot.py
110+
- utils/codingquestions.py
111+
- cogs/afk.py
112+
- cogs/bump.py
113+
- cogs/codebuddy_help.py
114+
- cogs/codebuddy_leaderboard.py
115+
- cogs/codebuddy_quiz.py
116+
- cogs/misc.py
117+
- cogs/rules.py
118+
- cogs/utility_extras.py

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Eigen Bot supports **hybrid commands** - both prefix and slash commands:
2525
- Auto-complete and built-in Discord UI
2626
- Limited to essential commands to stay within Discord's 100 command limit
2727

28-
** Tip**: Use `?helpmenu` or `/help` to explore all available commands!
28+
**Tip:** Use `?helpmenu` or `/help` to explore all available commands!
2929

3030
---
3131

@@ -456,7 +456,7 @@ Special thanks to the discord.py community and all contributors!
456456

457457
[GitHub](https://github.com/youngcoder45/Eigen-bot-In-Python)[Issues](https://github.com/youngcoder45/Eigen-bot-In-Python/issues)
458458

459-
Made with for Discord communities
459+
Made with ❤️ for Discord communities
460460

461461
</div>
462462

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
logger = logging.getLogger(__name__)
3131

3232
class Fun2OoshBot(commands.Bot):
33-
"""Main bot class for fun2oosh."""
33+
"""Main bot class for Eigen Bot."""
3434

3535
def __init__(self, config: Config):
3636
intents = discord.Intents.default()

cogs/starboard.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ async def starboard_info(self, ctx: commands.Context):
4646
"• Self-starring allowed by default\n"
4747
"• Real-time updates as more stars are added\n\n"
4848
" **Quick Setup:**\n"
49-
"`f?starboard setup #starboard 3 ⭐`\n\n"
49+
"`?starboard setup #starboard 3 ⭐`\n\n"
5050
" **Management Commands:**\n"
51-
"• `f?starboard channel #channel` - Change starboard channel\n"
52-
"• `f?starboard threshold 5` - Change star requirement\n"
53-
"• `f?starboard emoji ` - Change star emoji\n"
54-
"• `f?starboard stats` - View server statistics\n"
55-
"• `f?starboard toggle` - Enable/disable system\n"
51+
"• `?starboard channel #channel` - Change starboard channel\n"
52+
"• `?starboard threshold 5` - Change star requirement\n"
53+
"• `?starboard emoji ` - Change star emoji\n"
54+
"• `?starboard stats` - View server statistics\n"
55+
"• `?starboard toggle` - Enable/disable system\n"
5656
),
5757
color=0xFFD700 # Gold color
5858
)
@@ -67,7 +67,7 @@ async def starboard_info(self, ctx: commands.Context):
6767
),
6868
inline=False
6969
)
70-
embed.set_footer(text="fun2oosh Bot • Modern Discord Experience", icon_url=ctx.author.display_avatar.url)
70+
embed.set_footer(text="Eigen Bot • Modern Discord Experience", icon_url=ctx.author.display_avatar.url)
7171
await ctx.send(embed=embed)
7272
"""Starboard system for highlighting popular messages with star reactions"""
7373

@@ -295,7 +295,7 @@ async def starboard_setup(self, ctx: commands.Context, channel: discord.TextChan
295295
embed.add_field(name=" Features", value="Dynamic colors, thumbnails, smart formatting", inline=True)
296296
embed.add_field(
297297
name=" Next Steps",
298-
value=f"Start starring messages with {emoji} reactions!\nUse `f?starboard stats` to track activity.",
298+
value=f"Start starring messages with {emoji} reactions!\nUse `?starboard stats` to track activity.",
299299
inline=False
300300
)
301301
embed.set_footer(text=" Your starboard will get more beautiful as messages get more stars!")
@@ -411,7 +411,7 @@ async def starboard_stats(self, ctx: commands.Context):
411411
if not settings:
412412
await ctx.send(embed=create_error_embed(
413413
"Starboard Not Setup",
414-
"Please run `f?starboard setup` first to configure the starboard system."
414+
"Please run `?starboard setup` first to configure the starboard system."
415415
))
416416
return
417417

0 commit comments

Comments
 (0)