MasterSon-git / vic3-kmpmp

Victoria 3 - Karesak Multiplayer Mod Pack
0 stars 0 forks source link

Bugfix: Reino Unido #256

Open MasterSon-git opened 1 month ago

MasterSon-git commented 1 month ago

The JE "je_reino_unido_protectorate" didn't complete if portugal is subject of brazil, when Iberia exists at tis time.

So fix the check:

    complete = {
        trigger_if = { # BRZ view
            limit = {
                c:BRZ ?= ROOT
            }
            NOR = {
                c:POR ?= {
                    ROOT = {
                        is_direct_subject_of = c:POR
                    }
                    # any_subject_or_below = {
                    #   c:BRZ ?= THIS
                    # }
                }
                c:IBE ?= {
                    ROOT = {
                        is_direct_subject_of = c:IBE
                    }
                    # any_subject_or_below = {
                    #   c:BRZ ?= THIS
                    # }
                }
            }