One line summary of your issue
Event HF.120 is missing an action for one option
Game Version
3.0.1
What expansions do you have installed?
All of the above
Do you have mods enabled?
No
Please explain your issue is in as much detail as possible.
There's an event with ID HF.120, to gain a trait from a bloodline founder.
One of the options, if I'm lunatic, and not cannibal, while founder was cannibal, I'll gain the cannibal trait. Another, if I'm possessed and not cannibal, while founder is cannibal, I'll... well, the option has no action at all, I believe the add_trait was forgotten. Here's the relevant code:
Steps to reproduce the issue.
Uhh..It's luck based. Have a bloodline founded by a cannibal. Go a couple of generations down the line. Gain possessed. Don't be lunatic, don't be cannibal. Trigger event HF.120. You'll get 3 options, two are normal, the one for possessed does absolutely nothing.
Upload Attachment
Event HF.120 is missing an action for one option
Game Version
3.0.1
What expansions do you have installed?
All of the above
Do you have mods enabled?
No
Please explain your issue is in as much detail as possible.
There's an event with ID HF.120, to gain a trait from a bloodline founder.
One of the options, if I'm lunatic, and not cannibal, while founder was cannibal, I'll gain the cannibal trait. Another, if I'm possessed and not cannibal, while founder is cannibal, I'll... well, the option has no action at all, I believe the add_trait was forgotten. Here's the relevant code:
Code:
option = {
name = EVTOPTC_HF_120
tooltip_info = lunatic
trigger = {
trait = lunatic
NOT = {
trait = cannibal_trait
}
event_target:target_bloodline_founder = {
trait = cannibal_trait
}
}
add_trait = cannibal_trait
}
option = {
name = EVTOPTC_HF_120
tooltip_info = possessed
trigger = {
trait = possessed
NOR = {
trait = cannibal_trait
trait = lunatic
}
event_target:target_bloodline_founder = {
trait = cannibal_trait
}
}
#There should be an add_trait here like the one in the previous section.
}
Steps to reproduce the issue.
Uhh..It's luck based. Have a bloodline founded by a cannibal. Go a couple of generations down the line. Gain possessed. Don't be lunatic, don't be cannibal. Trigger event HF.120. You'll get 3 options, two are normal, the one for possessed does absolutely nothing.
Upload Attachment
Upvote
0