Skip to content

Commit

Permalink
Merge pull request #32 from BUTR/dev
Browse files Browse the repository at this point in the history
v0.6.7
  • Loading branch information
Aragas authored Jun 30, 2022
2 parents 4b77ab8 + c320d26 commit 3039374
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- Module Name -->
<ModuleName>BUTR's Yell To Inspire</ModuleName>
<!-- Module Version -->
<Version>0.6.6</Version>
<Version>0.6.7</Version>
<!-- Module manually override GameVersion -->
<!-- <OverrideGameVersion>e1.6.2</OverrideGameVersion> -->
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void LoadLanguageData()
var path = Path.Combine(Utilities.GetBasePath(), "Modules", moduleInfo.Id, "ModuleData", "Languages");
if (!Directory.Exists(path)) return;

foreach (var file in Directory.GetFiles(path, "language_data.xml_", SearchOption.AllDirectories))
foreach (var file in Directory.GetFiles(path, "language_data._xml", SearchOption.AllDirectories))
{
if (LoadXmlFile(file) is { } xmlDocument)
LoadFromXml(xmlDocument, path);
Expand Down
4 changes: 4 additions & 0 deletions src/Bannerlord.YellToInspire/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
---------------------------------------------------------------------------------------------------
Version: 0.6.7
Game Versions: e1.7.2,e1.8.0
* Third workaround for the language issue
---------------------------------------------------------------------------------------------------
Version: 0.6.6
Game Versions: e1.7.2,e1.8.0
* Second workaround for the language issue
Expand Down

0 comments on commit 3039374

Please sign in to comment.