Skip to content

Commit 946a8a0

Browse files
committed
fix fatal EnumProperty FromString typo
1 parent 84112a9 commit 946a8a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UAssetAPI/PropertyTypes/Objects/EnumPropertyData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public override void FromString(string[] d, UAsset asset)
6464

6565
if (d[1] != "null" && d[1] != null)
6666
{
67-
Value = FName.FromString(asset, d[0]);
67+
Value = FName.FromString(asset, d[1]);
6868
}
6969
else
7070
{

0 commit comments

Comments
 (0)