Skip to content

Commit

Permalink
Support all pre-1.4 CK3 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlendea committed Jun 14, 2022
1 parent ad9c079 commit b60c602
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public IModBuilder GetModBuilder(Settings settings)

if (normalisedGame.StartsWith("CK3"))
{
if (settings.Mod.GameVersion.StartsWith("1.4"))
if (string.Compare(settings.Mod.GameVersion.Substring(0, 3), "1.4") <= 0)
{
return new CK3v14ModBuilder(
localisationFetcher,
Expand Down

0 comments on commit b60c602

Please sign in to comment.