• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

tre3qwerty

First Lieutenant
79 Badges
Jan 23, 2015
247
249
  • Europa Universalis IV: Res Publica
  • Stellaris: Galaxy Edition
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Third Rome
  • Stellaris: Leviathans Story Pack
  • Europa Universalis IV: Golden Century
  • Stellaris: Digital Anniversary Edition
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Rule Britannia
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Cadet
  • Stellaris Sign-up
  • Stellaris: Galaxy Edition
  • Stellaris
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - Natural Disasters
  • Hearts of Iron IV: Together for Victory
  • Stellaris: Apocalypse
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Hearts of Iron IV: Death or Dishonor
  • Stellaris: Synthetic Dawn
  • Cities: Skylines - Green Cities
  • Europa Universalis IV: Cradle of Civilization
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Humanoids Species Pack
  • Victoria 2
  • Stellaris: Lithoids
  • Imperator: Rome
  • Imperator: Rome Sign Up
  • Imperator: Rome Deluxe Edition
  • Europa Universalis IV
  • Crusader Kings II: Holy Fury
  • Stellaris: Ancient Relics
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: La Resistance
  • Cities: Skylines Industries
  • Europa Universalis IV: Dharma
  • Cities: Skylines - Snowfall
  • Cities: Skylines - Parklife
  • Cities: Skylines - Campus
  • Cities: Skylines
  • Cities: Skylines Deluxe Edition
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Cities: Skylines - After Dark
  • Stellaris: Distant Stars
The "The Burgundian Conquest" achievement requires you to be Burgundy, own the lowlands, and have France and Austria as vassals.
The exact code requirement for unlocking the achievement is currently:


Code:
happened = {
    has_switched_nation = no
    tag = BUR
    FRA = { is_subject_of = ROOT }
    HAB = { is_subject_of = ROOT }
    low_countries_region = {
        type = all
        owned_by = ROOT
        is_core = ROOT
    }       
}

which was fine up until the latest patch. Now, however, a part of the Burgundian mission tree leads you to form Lotharingia (and thus tag switch to LOT) rendering you unable to unlock it.
Since Lotharingia is part of the mission tree and, afaik, only Burgundy is actually able to form it, I think it should be fine to add LOT as an eligible tag for the achievement:

Code:
happened = {
    has_switched_nation = no
    OR = {
        tag = BUR
        tag = LOT
    }
    FRA = { is_subject_of = ROOT }
    HAB = { is_subject_of = ROOT }
    low_countries_region = {
        type = all
        owned_by = ROOT
        is_core = ROOT
    }       
}
 
  • 3
  • 1Like
Reactions:
Upvote 0