[Audio] Change Lavalink.jar version checking (#2785)

This commit is contained in:
aikaterna 2019-06-22 21:10:31 -07:00 committed by Toby Harradine
parent 1804314f45
commit 065396abab

View File

@ -261,7 +261,7 @@ class ServerManager:
# Output is unexpected, suspect corrupted jarfile
return False
build = int(match["build"])
cls._up_to_date = build == JAR_BUILD
cls._up_to_date = build >= JAR_BUILD
return cls._up_to_date
@classmethod