• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
Change science in ship_size
Code:
possible_construction = {
    custom_tooltip = {
        fail_text = first_25_years_empire_limit
        if = { 
            limit = { years_passed < 25 } 
            count_owned_ship = {
                count <= 5
                is_ship_size = science
            }
        }
    }
}

May cause some performance issue.
 
  • 1Like
  • 1
Reactions:
Change science in ship_size
Code:
possible_construction = {
    custom_tooltip = {
        fail_text = first_25_years_empire_limit
        if = {
            limit = { years_passed < 25 }
            count_owned_ship = {
                count <= 5
                is_ship_size = science
            }
        }
    }
}

May cause some performance issue.
you try? last time i try not work because possible_costructor not use country, but use starship and from = not work.
And how resolve problem of queue?
 
Retry: and
1606395549864.png

Try your and my:


Code:
    possible_construction = {
        custom_tooltip = {
            fail_text = first_25_years_empire_limit
            OR = {
                limit = { years_passed > 1 }
                count_owned_ship = {
                    count <= 1
                    is_ship_class = shipclass_science_ship
                }
            }

        }
    }