Short summary of your issue
Varangian Guard event results in eunuch daughter
Game Version
1.5.1.1
What OS are you playing on?
Windows
What platform are you using?
Steam
What DLC do you have installed?
Royal Court,
Do you have mods enabled?
No
Have you tried verifying your game files (Steam only)?
Yes
How much "pain" is this causing you?
7
Please explain the issue you experienced in the most condensed way possible
Created a hybrid culture allowing me to send daughters to the varangian guard. Possible result of this is eunuch daughter throungh varangian events. I think I found the culprit, see below.
Please explain how to reproduce the issue
Send a woman to the varangian guard and roll the dice enough time for a castrating event to happen to said woman.
Is there anything else you think could help us identify/replicate the issue?
I know my way around the clausewitz engine, I'm fairly certain I isolated the problem :
- knight_on_action.txt can fire "varangian.2008" randomly on a varagian guard.
- "varangian.2008" randomly choose a wound to apply, one of chich is becoming a eunuch.
- the problem is here, when choosing which wound can be applied, the trigger to choose eunuch is faulty, it doesn't exclude women.
In more detail, Line 807 -> 812 of varangian_events.txt reads as follow:
trigger = {
...NOT = {
......has_trait = eunuch
......is_male = yes
...}
}
Which, if I read it correctly, means only non eunuch ladies are selected to be castrated. Surely this is not WAD.
The correct trigger should be :
trigger = {
...is_male = yes
...NOT = {
......has_trait = eunuch
...}
}
In the save game attached, my last daughter and heir is made a eunuch 100% of the time (thanks to pre-rolled seeds) the 4th of october.
A final note to say that the same weird thing can happen with blindness targetted at women in the same code just below.
I have attached a save game
Yes
Upload Attachment
File(s) attached
Varangian Guard event results in eunuch daughter
Game Version
1.5.1.1
What OS are you playing on?
Windows
What platform are you using?
Steam
What DLC do you have installed?
Royal Court,
Do you have mods enabled?
No
Have you tried verifying your game files (Steam only)?
Yes
How much "pain" is this causing you?
7
Please explain the issue you experienced in the most condensed way possible
Created a hybrid culture allowing me to send daughters to the varangian guard. Possible result of this is eunuch daughter throungh varangian events. I think I found the culprit, see below.
Please explain how to reproduce the issue
Send a woman to the varangian guard and roll the dice enough time for a castrating event to happen to said woman.
Is there anything else you think could help us identify/replicate the issue?
I know my way around the clausewitz engine, I'm fairly certain I isolated the problem :
- knight_on_action.txt can fire "varangian.2008" randomly on a varagian guard.
- "varangian.2008" randomly choose a wound to apply, one of chich is becoming a eunuch.
- the problem is here, when choosing which wound can be applied, the trigger to choose eunuch is faulty, it doesn't exclude women.
In more detail, Line 807 -> 812 of varangian_events.txt reads as follow:
trigger = {
...NOT = {
......has_trait = eunuch
......is_male = yes
...}
}
Which, if I read it correctly, means only non eunuch ladies are selected to be castrated. Surely this is not WAD.
The correct trigger should be :
trigger = {
...is_male = yes
...NOT = {
......has_trait = eunuch
...}
}
In the save game attached, my last daughter and heir is made a eunuch 100% of the time (thanks to pre-rolled seeds) the 4th of october.
A final note to say that the same weird thing can happen with blindness targetted at women in the same code just below.
I have attached a save game
Yes
Upload Attachment
File(s) attached
Attachments
Last edited:
- 3
- 2
- 2