Add support for Jubeat omnimix on api
This commit is contained in:
parent
3c1054b54c
commit
d14317c18c
@ -215,7 +215,11 @@ class CatalogObject(BaseObject):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def music_version(self) -> int:
|
def music_version(self) -> int:
|
||||||
if self.game in {GameConstants.IIDX, GameConstants.MUSECA}:
|
if self.game in {
|
||||||
|
GameConstants.IIDX,
|
||||||
|
GameConstants.MUSECA,
|
||||||
|
GameConstants.JUBEAT,
|
||||||
|
}:
|
||||||
if self.omnimix:
|
if self.omnimix:
|
||||||
return self.version + DBConstants.OMNIMIX_VERSION_BUMP
|
return self.version + DBConstants.OMNIMIX_VERSION_BUMP
|
||||||
else:
|
else:
|
||||||
|
@ -222,7 +222,11 @@ class RecordsObject(BaseObject):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def music_version(self) -> int:
|
def music_version(self) -> int:
|
||||||
if self.game in {GameConstants.IIDX, GameConstants.MUSECA}:
|
if self.game in {
|
||||||
|
GameConstants.IIDX,
|
||||||
|
GameConstants.MUSECA,
|
||||||
|
GameConstants.JUBEAT,
|
||||||
|
}:
|
||||||
if self.omnimix:
|
if self.omnimix:
|
||||||
return self.version + DBConstants.OMNIMIX_VERSION_BUMP
|
return self.version + DBConstants.OMNIMIX_VERSION_BUMP
|
||||||
else:
|
else:
|
||||||
|
@ -26,7 +26,11 @@ class StatisticsObject(BaseObject):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def music_version(self) -> int:
|
def music_version(self) -> int:
|
||||||
if self.game in {GameConstants.IIDX, GameConstants.MUSECA}:
|
if self.game in {
|
||||||
|
GameConstants.IIDX,
|
||||||
|
GameConstants.MUSECA,
|
||||||
|
GameConstants.JUBEAT,
|
||||||
|
}:
|
||||||
if self.omnimix:
|
if self.omnimix:
|
||||||
return self.version + DBConstants.OMNIMIX_VERSION_BUMP
|
return self.version + DBConstants.OMNIMIX_VERSION_BUMP
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user