소스 검색

fixed the hour duration thing because the np command looked like shit.

tags/v1.8.0
Roxie Gibson 6 년 전
부모
커밋
f1828f1191
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      roxbot/cogs/voice.py

+ 1
- 1
roxbot/cogs/voice.py 파일 보기

@@ -132,7 +132,7 @@ class Voice:
formatted = datetime.time(**format_me)
output = "{:%M:%S}".format(formatted)
if formatted.hour >= 1:
output = "{:%H}".format(formatted) + output
output = "{:%H:}".format(formatted) + output
return output

async def _queue_logic(self, ctx):

Loading…
취소
저장