Skip to content

Commit 9a720b0

Browse files
committed
Minor PR fixes
1 parent 2fe957e commit 9a720b0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

xivModdingFramework/Items/Categories/Gear.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ public async Task<List<XivGear>> GetGearList(string substring = null)
6262
return await cache.GetCachedGearList(substring);
6363
}
6464

65-
/// <summary>
66-
/// A getter for available gear in the Item exd files
67-
/// </summary>
68-
/// <returns>A list containing XivGear data</returns>
69-
public async Task<List<XivGear>> GetUnCachedGearList()
65+
/// <summary>
66+
/// A getter for available gear in the Item exd files
67+
/// </summary>
68+
/// <returns>A list containing XivGear data</returns>
69+
public async Task<List<XivGear>> GetUnCachedGearList()
7070
{
7171
// These are the offsets to relevant data
7272
// These will need to be changed if data gets added or removed with a patch

xivModdingFramework/Mods/Modding.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ where mod.fullPath.Equals(modItemPath)
375375
{
376376
throw new Exception("Failed to delete file descriptor.");
377377
}
378-
index.DeleteFileDescriptor($"{modItemPath}.flag", XivDataFiles.GetXivDataFile(modToRemove.datFile));
378+
success = index.DeleteFileDescriptor($"{modItemPath}.flag", XivDataFiles.GetXivDataFile(modToRemove.datFile));
379379
if (!success)
380380
{
381381
throw new Exception("Failed to delete file descriptor.");

0 commit comments

Comments
 (0)