Fix generating default values for StringName

Cases other than `&""` were not processed correctly
This commit is contained in:
A Thousand Ships
2024-06-13 16:57:23 +02:00
parent c5986e666f
commit 6cd6c8923a

View File

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