RoGreat / MarryAnyone

Bannerlord mod that allows the player to marry faction leaders and companions.
https://www.nexusmods.com/mountandblade2bannerlord/mods/1483
MIT License
9 stars 15 forks source link

implemented Gay Marriage Options #5

Closed lazeras closed 3 years ago

lazeras commented 3 years ago

Implemented the Pregnancy's option from https://www.nexusmods.com/mountandblade2bannerlord/mods/14. Also found that DailyTickHero code line 130 - 139 is preventing female female marriages triggering the RefreshSpouseVisit if (hero.Spouse is not null) { if (hero.IsFemale == hero.Spouse.IsFemale) { // Decided to do this at the end so that you are not always going out with the opposite gender MAHelper.Print(" Spouse Unassigned: " + hero.Spouse); hero.Spouse.Spouse = null; hero.Spouse = null; } }