Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
It says "At least 10 (currently: 0): The culture is Khmer"
I currently have exactly 10 Khmer provinces as cores, so I think the check is broken.
There's also a typo in the mission tooltip. A space is missing in the sentence "Base Production at least 5" between "least" and "5".
Slightly harder (but more satisfying) would be to expand the scope of the culture conversion slightly. For example, the following code allows any province in Malaya, Indochina and Burma to be converted to Mon if it is owned by Lavo and adjacent to a Mon province.
random_owned_province = {
limit = {
OR = {
region = indo_china_region
region = malaya_region
region = burma_region
}
any_neighbor_province = { culture = mon }
NOT = { culture = mon }
}
change_culture = mon
}
I have, however, noticed a major bug which blocks the Champa-direction mission tree: In the trigger of khm_show_of_strength, you currently have:
tay_nguyen_area = {
type = all
owns_or_non_sovereign_subject_of = ROOT
}
but it should be:
tay_nguyen_area = {
type = all
country_or_non_sovereign_subject_holds = ROOT
}