Remove pronouns from character helper
This commit is contained in:
@@ -316,7 +316,6 @@ def _build_character_helper_text(
|
||||
character_id,
|
||||
name,
|
||||
alias,
|
||||
pronouns,
|
||||
age,
|
||||
nationality,
|
||||
occupation,
|
||||
@@ -330,7 +329,6 @@ def _build_character_helper_text(
|
||||
character_name = _normalize_free_text(name)
|
||||
character_id = _normalize_free_text(character_id)
|
||||
alias = _normalize_free_text(alias)
|
||||
pronouns = _normalize_free_text(pronouns)
|
||||
nationality = _normalize_free_text(nationality)
|
||||
occupation = _normalize_free_text(occupation)
|
||||
accent = _normalize_free_text(accent)
|
||||
@@ -366,9 +364,6 @@ def _build_character_helper_text(
|
||||
if alias:
|
||||
lines.append(f"{character_label} is also known as {alias}.")
|
||||
|
||||
if pronouns:
|
||||
lines.append(f"{character_label} uses {pronouns} pronouns.")
|
||||
|
||||
if age_value is not None:
|
||||
lines.append(f"{character_label} is {age_value} years old.")
|
||||
|
||||
@@ -853,14 +848,6 @@ class DumasCharacterHelperNode:
|
||||
"tooltip": "Optional alternate name, codename, or nickname.",
|
||||
},
|
||||
),
|
||||
"pronouns": (
|
||||
"STRING",
|
||||
{
|
||||
"default": "",
|
||||
"multiline": False,
|
||||
"tooltip": "Optional pronouns such as he/him or she/her.",
|
||||
},
|
||||
),
|
||||
"age": (
|
||||
"STRING",
|
||||
{
|
||||
@@ -927,7 +914,6 @@ class DumasCharacterHelperNode:
|
||||
character_id,
|
||||
name,
|
||||
alias,
|
||||
pronouns,
|
||||
age,
|
||||
nationality,
|
||||
occupation,
|
||||
@@ -942,7 +928,6 @@ class DumasCharacterHelperNode:
|
||||
character_id,
|
||||
name,
|
||||
alias,
|
||||
pronouns,
|
||||
age,
|
||||
nationality,
|
||||
occupation,
|
||||
|
||||
Reference in New Issue
Block a user