Skip to content

Commit c8737e3

Browse files
committed
- Prevent TTMP installation in Lumina mode.
1 parent a8c350b commit c8737e3

File tree

1 file changed

+5
-0
lines changed
  • xivModdingFramework/Mods/FileTypes

1 file changed

+5
-0
lines changed

xivModdingFramework/Mods/FileTypes/TTMP.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,11 @@ public static string GetVersion(DirectoryInfo modPackDirectory)
461461
{
462462
if (modsJson == null || modsJson.Count == 0) return (0, 0, "", 0);
463463

464+
if(XivCache.GameInfo.UseLumina)
465+
{
466+
throw new Exception("Cannot import modpacks via TexTools in Lumina mode.");
467+
}
468+
464469
var startTime = DateTime.Now.Ticks;
465470
long endTime = 0;
466471
long part1Duration = 0;

0 commit comments

Comments
 (0)