[SM] min client version change (#347)

This commit is contained in:
lordlou 2022-03-25 21:36:13 -04:00 committed by GitHub
parent e0aa52ed27
commit fb1be7b003
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -167,7 +167,8 @@ class SMWorld(World):
def get_required_client_version(self):
# changes to client DeathLink handling for 0.2.1
return max(super(SMWorld, self).get_required_client_version(), (0, 2, 1))
# changes to client Remote Item handling for 0.2.6
return max(super(SMWorld, self).get_required_client_version(), (0, 2, 6))
def getWord(self, w):
return (w & 0x00FF, (w & 0xFF00) >> 8)