Fix generating default values for `StringName`

Cases other than `&""` were not processed correctly

(cherry picked from commit 6cd6c8923a)
pull/1492/head
A Thousand Ships 2024-06-13 16:57:23 +02:00 committed by David Snopek
parent 246fd4718c
commit a6e5caacf8
1 changed files with 2 additions and 0 deletions

View File

@ -2442,6 +2442,8 @@ def correct_default_value(value, type_name):
return f"{type_name}()" return f"{type_name}()"
if value.startswith("Array["): if value.startswith("Array["):
return f"{{}}" return f"{{}}"
if value.startswith("&"):
return value[1::]
return value return value