In vampire.19 event, should
instead be OR rather than AND? It keeps firing for me even though both of my wives are vampires, but after I changed it to OR it stopped. I could have just broken the event. I'm just assuming the usage of logical functions here would mean
Code:
spouse = {
NOT = {
AND = {
trait = vampire_c
trait = secret_vampire_c
}
}
instead be OR rather than AND? It keeps firing for me even though both of my wives are vampires, but after I changed it to OR it stopped. I could have just broken the event. I'm just assuming the usage of logical functions here would mean
Code:
id = "vampire.19"
desc = "vamp_c_infect_wife"
trigger = {
OR = { # if you're either a vampire_c or secret_vampire_c
trait = vampire_c
trait = secret_vampire_c
}
spouse = {
NOT = {
OR = { #if your spouse is either a vampire_c or secret_vampire _c it won't fire
trait = vampire_c
trait = secret_vampire_c
}
}