Skip to content

Commit

Permalink
Added popupText to basic func
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Apr 30, 2024
1 parent ddcbb1a commit 8a80942
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/core/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ async def get_basic_function_from_raw(
funcTargetType=FUNC_TARGETTYPE_NAME[mstFunc.targetType],
funcquestTvals=get_traits_list(mstFunc.questTvals),
functvals=get_traits_list(mstFunc.tvals),
funcPopupText=mstFunc.popupText,
overWriteTvalsList=get_traits_list_list(mstFunc.overWriteTvalsList or []),
traitVals=traitVals,
buffs=buffs,
Expand Down
1 change: 1 addition & 0 deletions app/schemas/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class BasicFunction(BaseModelORJson):
functvals: list[NiceTrait]
overWriteTvalsList: list[list[NiceTrait]]
funcquestTvals: list[NiceTrait]
funcPopupText: str
traitVals: list[NiceTrait] = []
buffs: Sequence[BasicBuff]

Expand Down

0 comments on commit 8a80942

Please sign in to comment.