SighPie / HFM

# Historical Flavour Mod
102 stars 61 forks source link

Die Wacht am Rhein decision can usually not be taken #167

Open Lys0gen opened 4 years ago

Lys0gen commented 4 years ago

The german decision die_wacht_am_rhein has nonsensical conditions. While you should be able to take it if you have negative relations with france or a non-germanic country has annexed some german rhineland province, only the latter part can be true at the moment.

This is because the potential OR conditions are obviously wrong

            FRA = { exists = yes NOT = { relation = { who = FRA value = 0 } } }
            BOR = { exists = yes NOT = { relation = { who = BOR value = 0 } } }

should instead be

            FRA = { exists = yes NOT = { relation = { who = THIS value = 0 } } }
            BOR = { exists = yes NOT = { relation = { who = THIS value = 0 } } }

because otherwise it checks the relation of france to itself, not to germany/prussia.