I have a small issue in the Sertorius Mod which is making at least two of the events appear as follows:
It all works fine, except for the way it looks. The code for the one in the screenie above is event 70504, triggered by 70503 as follows:
Any help is appreciated.

It all works fine, except for the way it looks. The code for the one in the screenie above is event 70504, triggered by 70503 as follows:
Code:
country_event = {
id = 70503
trigger = {
tag = LUS
war_with = ROM
year = 675
NOT = { year = 678 }
NOT = { has_country_flag = roman_donation_ftw }
NOT = { has_country_flag = sertorius_donation_ftw }
}
title = "EVTNAME70503"
desc = "EVTDESC70503"
mean_time_to_happen = {
days = 1
}
immediate = {
set_country_flag = roman_donation_ftw
}
option = {
name = "EVTOPTA70503"
treasury = 300
stability = 1
any_country = {
country_event = 70504
}
}
}
country_event = {
id = 70504
trigger = {
tag = ROM
war_with = LUS
year = 674
NOT = { year = 675 }
NOT = { has_country_flag = roman_discord_ftw }
}
title = "EVTNAME70504"
desc = "EVTDESC70504"
mean_time_to_happen = {
days = 1
}
immediate = {
set_country_flag = roman_discord_ftw
}
option = {
name = "EVTOPTA70504"
stability = -2
}
}
Any help is appreciated.