Skip to content

Commit 161538e

Browse files
committed
- Fixed a magic string instead of constant reference.
1 parent c7f44a7 commit 161538e

File tree

1 file changed

+1
-1
lines changed
  • xivModdingFramework/Materials/DataContainers

1 file changed

+1
-1
lines changed

xivModdingFramework/Materials/DataContainers/XivMtrl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ public void SetMapInfo(XivTexType MapType, MapInfo info)
698698
} catch
699699
{
700700
// Prefix the item's personal path onto it.
701-
info.path = "{item_path}/" + info.path;
701+
info.path = ItemPathToken + "/" + info.path;
702702
info.path = DetokenizePath(info.path, info.Usage);
703703
}
704704

0 commit comments

Comments
 (0)