Skip to content

Commit

Permalink
fix: Correct LanguageLine value to string to properly use the Languag…
Browse files Browse the repository at this point in the history
…e key (#487)
  • Loading branch information
MrPurple6411 committed Oct 8, 2023
1 parent bc1587a commit 2ea3c43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static EnumBuilder<TechCategory> WithPdaInfo(this EnumBuilder<TechCategor
if (!string.IsNullOrEmpty(displayName))
{
LanguageHandler.SetLanguageLine("TechCategory" + name, displayName, language);
uGUI_BlueprintsTab.techCategoryStrings.valueToString[category] = "TechCategory" + displayName;
uGUI_BlueprintsTab.techCategoryStrings.valueToString[category] = "TechCategory" + name;
return builder;
}

Expand Down

0 comments on commit 2ea3c43

Please sign in to comment.