Crusader Kings II

Crusader Kings II

Gods! Version 2.1
Shadok 5 nov, 2015 @ 13:27
I AM THE RIGHT GENDER [How to fix it]
Since we've lost the modder for now, here's a fix which has been provided generously by one of our fellow users. Since people keep posting that same bug again and again in the bug topic, I'm making this in the hopes to make it easier to see how to fix this problem, at least until the modder comes back (or else forever).

Go into the GODS! folder in your mods folder (should be in your documents --> Paradox ---> CK2). Go into events and open the events file. Scroll until you find event 107. Replace what's there now with the below.

Ursprungligen skrivet av littleMarv:
the trigger of event 107 is slightly wrong here is how i rewrote it (with a little before and after so u can find where to fit it:
character_event = {
id = "thegods.107"
desc = "EVTDESCthegods.107"
picture = GFX_event_Sick_character_recovering
border = GFX_event_normal_frame_war
trigger = {
OR = { AND = { is_female = yes
OR = {
trait = Young_God
trait = God
trait = Young_Fallen_God
trait = Fallen_God
trait = Young_Demi_God
trait = Demi_God
}
}
AND = { is_female = no
OR = {
trait = Young_Goddess
trait = Goddess
trait = Young_Fallen_Goddess
trait = Fallen_Goddess
trait = Young_Demi_Goddes
trait = Demi_Goddess
}
}
}
}

option = {
name ="EVTOPTAthegods.107"

Credit to littleMarv for the rewrite. I suck at coding.