Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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
}