Skip to content

Commit

Permalink
rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailbennani committed Feb 22, 2024
1 parent 35f2396 commit 476d10f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lib/DataExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async Task<PalTribe[]> ExtractTribes()

async Task<IReadOnlyDictionary<string, byte[]>> ExtractPalIcons()
{
IReadOnlyDictionary<string, byte[]> palIcons = await new PalIconsExtractor(_provider).ExtractPalsAsync();
IReadOnlyDictionary<string, byte[]> palIcons = await new PalIconsExtractor(_provider).ExtractIconsAsync();
return palIcons;
}

Expand Down
2 changes: 1 addition & 1 deletion Lib/Extractors/PalIconsExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public PalIconsExtractor(DefaultFileProvider provider)
_provider = provider;
}

public async Task<IReadOnlyDictionary<string, byte[]>> ExtractPalsAsync()
public async Task<IReadOnlyDictionary<string, byte[]>> ExtractIconsAsync()
{
const string palAssetFilePath = @"Pal\Content\Pal\DataTable\Character\DT_PalCharacterIconDataTable.DT_PalCharacterIconDataTable";

Expand Down

0 comments on commit 476d10f

Please sign in to comment.