diff --git a/dumas_image_nodes.py b/dumas_image_nodes.py index 68773e1..7a2734b 100644 --- a/dumas_image_nodes.py +++ b/dumas_image_nodes.py @@ -321,6 +321,7 @@ def _build_character_helper_text( lines = [ first_line, f" is the primary full-body reference for {character_label}.", + f" is a frontal facial reference for {character_label}.", ] if character_id: diff --git a/tests/test_dumas_image_nodes.py b/tests/test_dumas_image_nodes.py index 5a9ac86..2339715 100644 --- a/tests/test_dumas_image_nodes.py +++ b/tests/test_dumas_image_nodes.py @@ -264,6 +264,7 @@ class DumasImageNodeTests(unittest.TestCase): ( " and reference the same character who is called Dave.\n" " is the primary full-body reference for Dave.\n" + " is a frontal facial reference for Dave.\n" 'The character ID string is "char_dave".\n' "Dave is 6'2\" tall.\n" "Dave has a northern English accent.\n" @@ -293,7 +294,8 @@ class DumasImageNodeTests(unittest.TestCase): result[2], ( " and reference the same character.\n" - " is the primary full-body reference for the character." + " is the primary full-body reference for the character.\n" + " is a frontal facial reference for the character." ), )