diff --git a/index.html b/index.html index 8db2c53c..c8d618e3 100644 --- a/index.html +++ b/index.html @@ -2545,6 +2545,7 @@ Beylik Despotate + Dominion Duchy Emirate Empire @@ -2718,6 +2719,7 @@ blank Area + Autonomy Barony Canton Clan @@ -2734,13 +2736,15 @@ Islands Land Landgrave + Mandate Margrave + Occupation zone Parish Prefecture Province Region Republic - Reservation + Reservation Shire State Territory diff --git a/modules/burgs-and-states.js b/modules/burgs-and-states.js index cb486ff9..d3ae5def 100644 --- a/modules/burgs-and-states.js +++ b/modules/burgs-and-states.js @@ -975,6 +975,7 @@ window.BurgsAndStates = (function () { // Default name depends on exponent tier, some culture bases have special names for tiers if (s.diplomacy) { if (form === "Duchy" && s.neighbors.length > 1 && rand(6) < s.neighbors.length && s.diplomacy.includes("Vassal")) return "Marches"; // some vassal dutchies on borderland + if (base === 1 && P(0.3) && s.diplomacy.includes("Vassal")) return "Dominion"; // English vassals if (P(0.3) && s.diplomacy.includes("Vassal")) return "Protectorate"; // some vassals }