From fe7879f0a3fdd7bce8e334e1d401452c252913a4 Mon Sep 17 00:00:00 2001 From: IntelOrca Date: Sun, 6 Sep 2015 11:04:55 +0100 Subject: [PATCH] add capacity overriding --- src/localisation/LanguagePack.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/localisation/LanguagePack.cpp b/src/localisation/LanguagePack.cpp index 27513a4a58..e2a9ca60ad 100644 --- a/src/localisation/LanguagePack.cpp +++ b/src/localisation/LanguagePack.cpp @@ -302,6 +302,7 @@ void LanguagePack::ParseString(IStringReader *reader) } else { if (strcmp(identifier, "STR_NAME") == 0) { stringId = 0; } else if (strcmp(identifier, "STR_DESC") == 0) { stringId = 1; } + else if (strcmp(identifier, "STR_CPTY") == 0) { stringId = 2; } else if (strcmp(identifier, "STR_SCNR") == 0) { stringId = 0; } else if (strcmp(identifier, "STR_PARK") == 0) { stringId = 1; }