Skip to content

Commit

Permalink
Added NOT_SVT_HAVING description for voice play conde
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Aug 15, 2024
1 parent 49defb5 commit 0aa6cd8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/db/src/Descriptor/CondTargetValueDescriptor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,13 @@ export default function CondTargetValueDescriptor(props: {
case CondType.SVT_HAVING:
return (
<>
Presence of <ServantDescriptorId region={region} id={target} servants={props.servants} />
{t("Presence of")} <ServantDescriptorId region={region} id={target} servants={props.servants} />
</>
);
case CondType.NOT_SVT_HAVING:
return (
<>
{t("Doesn't have")} <ServantDescriptorId region={region} id={target} servants={props.servants} />
</>
);
case CondType.QUEST_CLEAR_PHASE:
Expand Down

0 comments on commit 0aa6cd8

Please sign in to comment.