Skip to content

Commit

Permalink
Merge pull request #1695 from Jacky720/gui-decomp-comments
Browse files Browse the repository at this point in the history
Rudimentary "line-eating" patch
  • Loading branch information
Miepee authored Feb 25, 2024
2 parents 7ff22ae + 67e5568 commit ad24b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UndertaleModTool/Editors/UndertaleCodeEditor.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ private async Task DecompileCode(UndertaleCode code, bool first, LoaderDialog ex
{
Match match = matches[i];
if (!currDict.TryGetValue(match.Groups[1].Value, out string text))
continue;
text = "<localization fetch error>";

if (i != matches.Length - 1) // If not the last
decompLinesBuilder.Append($"{text}; ");
Expand Down

0 comments on commit ad24b0e

Please sign in to comment.