Skip to content

Commit 7610ab4

Browse files
committed
Set UI files in the UI category when cleaning the modlist.
1 parent 18f936f commit 7610ab4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

xivModdingFramework/Mods/Modding.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,11 @@ public async Task CleanUpModlist(IProgress<(int Current, int Total, string Messa
706706
mod.name = cmpName;
707707
mod.category = "Racial Scaling";
708708
}
709+
else if (mod.fullPath.StartsWith("ui/"))
710+
{
711+
mod.name = Path.GetFileName(mod.fullPath);
712+
mod.category = "UI";
713+
}
709714
else
710715
{
711716
mod.name = Path.GetFileName(mod.fullPath);

0 commit comments

Comments
 (0)