Skip to content

Commit ce842c1

Browse files
committed
Fix equipment decals below 101 not appearing
1 parent ba6f881 commit ce842c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xivModdingFramework/Items/Categories/Character.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ public async Task<List<string>> GetDecalPaths(XivDecalType type)
588588

589589
for (int i = 0; i < decalMax; i++)
590590
{
591-
var file = string.Format(XivStrings.EquipDecalFile, i);
591+
var file = string.Format(XivStrings.EquipDecalFile, i.ToString().PadLeft(3, '0'));
592592

593593
if (fileList.Contains(HashGenerator.GetHash(file)))
594594
{

0 commit comments

Comments
 (0)