Skip to content

Commit

Permalink
Update handler.js
Browse files Browse the repository at this point in the history
Adding max player count
  • Loading branch information
r-mach authored Feb 10, 2024
1 parent 3bc573b commit 3088b30
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/commands/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ export const execute = async (DiscordBot, receivedMessage, args) => {
inline: true,
value: handler.downloadCount.toString(),
},
{
name: 'Players',
inline: true,
value: handler.maxPlayers > 2 ? `2 - ${handler.maxPlayers.toString()}` : handler.maxPlayers.toString(),
},
{
name: 'Status',
inline: true,
Expand Down

0 comments on commit 3088b30

Please sign in to comment.