Skip to content

Commit

Permalink
quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Romualdo666 committed Oct 5, 2024
1 parent 17ae1be commit 0376d42
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion UndertaleModTool/ProfileSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,10 @@ await Task.Run(() =>

var GetThisDir = File.ReadAllText(FileDir);

Input_text = File.ReadAllText(GetThisDir);
if (File.Exists(GetThisDir))
Input_text = File.ReadAllText(GetThisDir);
else
Input_text = SimpleTextInput("Loading Profile, please enter a Profile name.", "(Leaving this blank will name the profile with the data's MD5 hash.)", Input_text, true);
//this.ShowMessage(Input_text);
}
else
Expand Down

0 comments on commit 0376d42

Please sign in to comment.