So, I'm trying to make a little tech mod. I've got all the mod entries apparently sorted out... Apparently.
I've got a localisation file that ends in _l_english.yml with text strings begun with a space. For example...
Is matched to
The actual tech seems to be working fine, but it won't display the proper name and description.
I've got a localisation file that ends in _l_english.yml with text strings begun with a space. For example...
Code:
tech_shadowdragon_bellicosity_1:0 "Bellicosity I"
tech_shadowdragon_bellicosity_1_desc:0 "If you send a Deneban fleet officer to a xenosciences conference, she's going to be upset at being surrounded by aliens."
Is matched to
Code:
tech_shadowdragon_bellicosity_1 = {
cost = @tier1cost4
area = society
category = { statecraft }
is_rare = no
tier = 1
prerequisites = { "tech_galactic_ambitions" }
modifier = { max_rivalries = 1 }
weight = @tier1weight4
weight_modifier = {
modifier = {
NOT = {
research_leader = {
has_trait = "leader_trait_expertise_statecraft"
area = society
}
}
factor = 0.25
}
}
ai_weight = {
modifier = {
factor = 1.25
research_leader = {
has_trait = "leader_trait_expertise_statecraft"
area = society
}
}
}
}
The actual tech seems to be working fine, but it won't display the proper name and description.