Skip to content

Commit

Permalink
Changed "queueTime" command name to "time"
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucca committed Mar 3, 2021
1 parent 161eea8 commit 88e5486
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ async def status(ctx):



# queueTime command- displays queue waiting times
# time command- displays queue waiting times
@client.command()
async def queueTime(ctx):
async def time(ctx):
# retrieving aiohttp ClientSession
global session_list
session = session_list[0]
Expand Down
2 changes: 1 addition & 1 deletion code/format_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def format_help():
content += 'Displays current server status: "Online", "In queue", "Starting up", etc.\n\n'
content += 'Also shows additional info about server resources, number of online players, and more.\n\n'

content += '`!redstone queueTime`\n\n'
content += '`!redstone time`\n\n'
content += 'Shows server locations and queue waiting times.\n\n'

content += '`!redstone start [location]`\n\n'
Expand Down

0 comments on commit 88e5486

Please sign in to comment.