Stellaris

Stellaris

Guilli's Planet Modifiers and Features
Machine Intelligence Ancient Archaeopolis Minor Artifact production issue
I am playing as a Machine Intelligence and have colonized an ancient archaeopolis, I built a Precursor institute and a faculty of Archaeostudies, however the only pop job that produce minor aritfacts is the precursor archaeologist drone.

Both of the building's tooltips mention the addition of 0.6 minor artifacts to each archaeoengineer's production, however the job provided by the buildings and districts is archaeo-engineering unit. Could that be the issue with the minor artifact probuction? or is something with my mod load order?

Bug Image https://imgur.com/a/ZXdCPt0

Enabled Mods:

{"game":"stellaris","name":"playset_3.5 BugBranch Guilli tech","mods":[{"displayName":"Simple Traditions","enabled":true,"position":0,"steamId":"2436408502"},{"displayName":"Plentiful Traditions 3.x","enabled":true,"position":1,"steamId":"1311725711"},{"displayName":"Expanded Stellaris Traditions","enabled":true,"position":2,"steamId":"946222466"},{"displayName":"Plentiful Traditions 3.x - Extra Perks","enabled":true,"position":3,"steamId":"1333526620"},{"displayName":"Ascension Perks Broadened 3.8","enabled":true,"position":4,"steamId":"2786371128"},{"displayName":"Expanded Stellaris Ascension Perks 3.8","enabled":true,"position":5,"steamId":"2976573664"},{"displayName":"! Reworked Advanced Ascension","enabled":true,"position":6,"steamId":"1199002146"},{"displayName":"! Sartek Tradition - Ascension Perk Merger","enabled":true,"position":7,"steamId":"2821711162"},{"displayName":"Trait Diversity","enabled":true,"position":8,"steamId":"1928831043"},{"displayName":"Even More Origins","enabled":true,"position":9,"steamId":"1998204784"},{"displayName":"Gigastructural Engineering & More (3.8)","enabled":true,"position":10,"steamId":"1121692237"},{"displayName":"Planetary Diversity","enabled":true,"position":11,"steamId":"819148835"},{"displayName":"Guilli's Planet Modifiers and Features","enabled":true,"position":12,"steamId":"865040033"},{"displayName":"Ethics & Civics: Bug Branch","enabled":true,"position":13,"steamId":"2517213262"},{"displayName":"Guilli's Technologies","enabled":true,"position":14,"steamId":"1793768254"},{"displayName":"!!!Universal Resource Patch [2.4+]","enabled":true,"position":15,"steamId":"1595876588"},{"displayName":"!!Universal Modifier Patch (3.8.*)","enabled":true,"position":16,"steamId":"1688887083"},{"displayName":"UI Overhaul Dynamic","enabled":true,"position":17,"steamId":"1623423360"},{"displayName":"UI Overhaul Dynamic - More Tradition Categories (48)","enabled":true,"position":18,"steamId":"2608299248"},{"displayName":"UI Overhaul Dynamic - Ascension Slots","enabled":true,"position":19,"steamId":"1890399946"},{"displayName":"Bigger Planet View","enabled":true,"position":20,"steamId":"1587178040"},{"displayName":"24 Building Slots","enabled":true,"position":21,"steamId":"1726290528"},{"displayName":"Expanded Colours [180 Colours]","enabled":true,"position":22,"steamId":"682090850"},{"displayName":"Nice Icons","enabled":true,"position":23,"steamId":"2979089967"},{"displayName":"(-NSC2 Season 8-)","enabled":true,"position":24,"steamId":"683230077"}]}
< >
Showing 1-5 of 5 comments
MikeyTX 7 Aug, 2024 @ 9:29am 
Bump
lejinsb 21 Sep, 2024 @ 5:51am 
same issue , it's a bug from "Guilli's Planet Modifiers and Features" along , tested it with only "Guilli's Planet Modifiers and Features" loaded and the issue still there .
POMAL 6 Oct, 2024 @ 5:40am 
same. However, as machine non-gestalt, I have Archaeo-Engineer jobs that don't produce minor artifacts
Moonglow 14 Mar @ 3:52pm 
Found the possible answer. The building is missing the + minor artifacts modifier, the same with the basejob, it should also produce some artifacts if i understand the files correctly. Anyway a possible fix would be to add this to the building file, though i dunno how to test that out^^ :

triggered_planet_modifier = { potential = { planet = { is_planet_class = pc_gpm_precursor_tomb } exists = owner owner = { is_gestalt = no } } modifier = { planet_archaeoengineers_minor_artifacts_produces_add = 0.6 } } triggered_planet_modifier = { potential = { planet = { is_planet_class = pc_gpm_precursor_tomb } exists = owner owner = { is_hive_empire = yes } } modifier = { planet_archaeo_drone_minor_artifacts_produces_add = 0.6 } } triggered_planet_modifier = { potential = { planet = { is_planet_class = pc_gpm_precursor_tomb } exists = owner owner = { is_machine_empire = yes } } modifier = { planet_archaeo_unit_minor_artifacts_produces_add = 0.6 } } triggered_planet_modifier = { potential = { planet = { is_planet_class = pc_relic } exists = owner owner = { is_gestalt = no } } modifier = { planet_archaeoengineers_minor_artifacts_produces_add = 0.3 } } triggered_planet_modifier = { potential = { planet = { is_planet_class = pc_relic } exists = owner owner = { is_hive_empire = yes } } modifier = { planet_archaeo_drone_minor_artifacts_produces_add = 0.3 } } triggered_planet_modifier = { potential = { planet = { is_planet_class = pc_relic } exists = owner owner = { is_machine_empire = yes } } modifier = { planet_archaeo_unit_minor_artifacts_produces_add = 0.3 } }
sayonara 12 Jun @ 5:05pm 
3.14 version
this not work for me, but i found solution when replacing strings in pop_jobs for archaeologist
produces = {
trigger = { planet = { is_planet_class = pc_relic } }
minor_artifacts = 0.3
}


with this strings

produces = {
trigger = { planet = { is_planet_class = pc_relic } }
minor_artifacts = 0.3
}
produces = {
trigger = {
planet = { is_planet_class = pc_relic }
planet = { has_active_building = gpm_precursor_research_center }
}
minor_artifacts = 0.3
}
produces = {
trigger = {
planet = { is_planet_class = pc_gpm_precursor_tomb }
planet = { has_active_building = gpm_precursor_research_center }
}
minor_artifacts = 0.5
}
produces = {
trigger = {
planet = { is_planet_class = pc_gpm_precursor_tomb }
planet = { has_active_building = building_archaeostudies_faculty }
}
minor_artifacts = 0.25
}}


UPD. And i don't know if this will work for Gestalts, or they need to create another txt file gpm_gestalt_jobs with changes for archeodrons. Anyway, for fast fix u can copy whis txt in 865040033\common\pop_jobs https://drive.google.com/file/d/1csrR0je2Lvd6ouOkabnUgG58pqFXwI2j/view?usp=sharing
Upd2 - little more changing for working via Archaeostudies faculty
Last edited by sayonara; 12 Jun @ 5:54pm
< >
Showing 1-5 of 5 comments
Per page: 1530 50