Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinary1 committed Oct 21, 2024
1 parent 260a7bb commit c2cee50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public override ConstructionGuideEntry GenerateGuideEntry()
return new ConstructionGuideEntry
{
Localization = "construction-presenter-arbitrary-step",
Arguments = new (string, object)[] { ("name", Loc.TryGetString($"{Name}", out var name) ? name : nameLocale) },
Arguments = new (string, object)[] { ("name", Loc.TryGetString($"{Name}", out var translatedname) ? translatedname : nameLocale ?? Name) },
Icon = Icon,
};
}
Expand Down

0 comments on commit c2cee50

Please sign in to comment.