Skip to content

Commit

Permalink
Update ClickableSearchOutput() for CLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
VladiStep committed Dec 23, 2023
1 parent eb13b20 commit 54a7131
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UndertaleModCli/Program.UMTLibInherited.cs
Original file line number Diff line number Diff line change
Expand Up @@ -521,13 +521,13 @@ public string SimpleTextInput(string title, string label, string defaultValue, b
}

/// <inheritdoc/>
public async Task ClickableSearchOutput(string title, string query, int resultsCount, IOrderedEnumerable<KeyValuePair<string, List<string>>> resultsDict, bool editorDecompile, IOrderedEnumerable<string> failedList = null)
public async Task ClickableSearchOutput(string title, string query, int resultsCount, IOrderedEnumerable<KeyValuePair<string, List<(int, string)>>> resultsDict, bool editorDecompile, IOrderedEnumerable<string> failedList = null)
{
await ClickableSearchOutput(title, query, resultsCount, resultsDict.ToDictionary(pair => pair.Key, pair => pair.Value), editorDecompile, failedList);
}

/// <inheritdoc/>
public async Task ClickableSearchOutput(string title, string query, int resultsCount, IDictionary<string, List<string>> resultsDict, bool editorDecompile, IEnumerable<string> failedList = null)
public async Task ClickableSearchOutput(string title, string query, int resultsCount, IDictionary<string, List<(int, string)>> resultsDict, bool editorDecompile, IEnumerable<string> failedList = null)
{
await Task.Delay(1); //dummy await

Expand Down

0 comments on commit 54a7131

Please sign in to comment.