From c9cad4935e1fa1358ca443237f25c1308f66c90a Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 14 Oct 2022 01:19:36 +0200 Subject: Added content dat to ignore list for ModConfig In case language packs will be selected via modding interface this should be reconsidered. One way would be to merge content into main datafile and then use English text as base for translations. --- StarsEx/ModConfig.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/StarsEx/ModConfig.cpp b/StarsEx/ModConfig.cpp index 3cc433e..9cbd1c7 100644 --- a/StarsEx/ModConfig.cpp +++ b/StarsEx/ModConfig.cpp @@ -173,7 +173,8 @@ ModConfig::FindMods() Text* name = iter.value(); name->setSensitive(false); - if (*name == "shatter.dat" || + if (*name == "shatter.dat" || + *name == "content.dat" || *name == "beta.dat" || *name == "start.dat" || *name == "irunin.dat" || -- cgit v1.1