Include hours in uptime

This commit is contained in:
Elmon11 2020-12-10 11:45:37 +01:00 committed by GitHub
parent 2efede4f00
commit b01d0f5b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ class ServerCommands(commands.Cog):
print(f'TPS: {server_tps}, UPTIME: {server_uptime}')
try:
server_uptime = re.match('[0-9]?[0-9] minutes( [0-6]?[0-9] seconds)?', server_uptime)[0]
server_uptime = re.match('([0-9]?[0-9] hours )?([0-9]?[0-9] minutes)( [0-6]?[0-9] seconds)?', server_uptime)[0]
server_tps = re.match('[0-2][0-9].?[0-9]?[0-9]?', server_tps)[0]
maximum_memory = re.match('[0-9],?[0-9][0-9][0-9]? MB', maximum_memory)[0]
allocated_memory = re.match('[0-9],?[0-9][0-9][0-9]? MB', allocated_memory)[0]