Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
fix(style): correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xMdb committed Mar 29, 2022
1 parent 6892417 commit 5575fbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ OFFICER_CHANNEL_ID=
# Default: h!
DISCORD_PREFIX=h!

# Minecraft Outgoing Chat Seperator (eg. Player > message)
# Minecraft Outgoing Chat Separator (eg. Player > message)
# Default: ">"
MINECRAFT_CHAT_SEPERATOR=>
MINECRAFT_CHAT_SEPARATOR=>

# Minecraft Account Email
MINECRAFT_EMAIL=
Expand Down
2 changes: 1 addition & 1 deletion src/classes/Bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Bot {
public memberChannel?: TextChannel;
public officerChannel?: TextChannel;
public botPrefix = process.env.DISCORD_PREFIX as string ?? 'h!';
public chatSeparator = process.env.MINECRAFT_CHAT_SEPERATOR as string ?? '>';
public chatSeparator = process.env.MINECRAFT_CHAT_SEPARATOR as string ?? '>';

public onlineCount = 0;
public totalCount = 125;
Expand Down

0 comments on commit 5575fbe

Please sign in to comment.