The option should be saying "Now to heal our nation." rather than "An interesting development."
The problem seems to be that it checks for whether you originally were the SPA tag but that tag doesn't exist. Maybe with the LaR expansion the tags for Spain changed and it wasn't updated. The republican check uses SPR which is the original tag for Spain in LaR.
If you want to fix it yourself look for the "NewsEvents" file located here: \SteamLibrary\steamapps\common\Hearts of Iron IV\events
Make a copy of it somewhere and then go back to the file in the steam folder and enter it with notepad or something similar.
Search for "news.64" and scroll down until you find the options (in bold below). The event should look like this:
Code:
# End of the Spanish Civil War (Nationalist victory)
news_event = {
id = news.64
title = news.64.t
desc = news.64.d
picture = GFX_news_event_033
major = yes
trigger = {
has_global_flag = spanish_civil_war
NOT = { has_global_flag = scw_over }
NOT = { has_dlc = "La Resistance" }
SPR = { has_civil_war = no }
any_other_country = {
original_tag = SPR
has_government = fascism
}
all_country = {
OR = {
NOT = { original_tag = SPR }
has_government = fascism
}
}
}
mean_time_to_happen = {
days = 2
}
immediate = {
set_global_flag = nationalist_victory
set_global_flag = scw_over
}
option = {
name = news.64.a
trigger = {
NOT = { original_tag = SPA }
}
}
option = {
name = news.64.b
trigger = { original_tag = SPA }
delete_unit_template_and_units = { division_template = "Brigada Legionario" }
}
}
}
Now change the SPA in both to SPR and save the file. The options should look like this:
Code:
option = {
name = news.64.a
trigger = {
NOT = { original_tag = SPR }
}
}
option = {
name = news.64.b
trigger = { original_tag = SPR }
delete_unit_template_and_units = { division_template = "Brigada Legionario" }
}
}
}
Then start up the game and launch the event "news.64" from the command console. It should give you the second choice now which deletes the templates.