修复bug

This commit is contained in:
qwerdvd 2023-09-30 19:50:40 +08:00
parent b04f0e34db
commit 7c58ef5645
2 changed files with 1 additions and 4 deletions

View File

@ -20,10 +20,10 @@ class Equipment(Struct):
class Relic(Struct):
subAffixList: list[SubAffix]
tid: int
mainAffixId: int
type: int
subAffixList: list[SubAffix] | None
level: int | None = field(default=0)

View File

@ -97,9 +97,6 @@ class RogueRecordInfo(Struct):
detail_h: Union[int, None] = None
start_h: Union[int, None] = None
# def __setitem__(self, key: str, value: Any) -> None:
# self.__dict__[key] = value
class RogueBasic(Struct):
id: int