Confirmed Stellaris - [3.4.2] Can't build an Art College in the Artist Enclave system (nice easy fix)

  • 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.

Critical Ethics

Colonel
35 Badges
Jun 3, 2017
801
2.279
  • Stellaris: Galaxy Edition
  • Sword of the Stars
  • Majesty 2 Collection
  • Stellaris: Synthetic Dawn
  • Sword of the Stars II
  • Magicka
  • Surviving Mars: Digital Deluxe Edition
  • Stellaris: Nemesis
  • Surviving Mars: First Colony Edition
  • Stellaris: Megacorp
  • Surviving Mars: First Colony Edition
  • Age of Wonders: Planetfall
  • Age of Wonders: Planetfall Deluxe edition
  • Age of Wonders: Planetfall Premium edition
  • Age of Wonders: Planetfall Season pass
  • Age of Wonders: Planetfall Sign Up
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Stellaris: Necroids
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Age of Wonders II
  • Age of Wonders
  • Age of Wonders III
  • Surviving Mars
  • BATTLETECH
  • Stellaris - Path to Destruction bundle
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Galaxy Edition
  • Stellaris
  • Stellaris: Distant Stars
  • Stellaris: Ancient Relics
  • Age of Wonders: Planetfall - Revelations
  • Crusader Kings II
Description
[3.4.2] [7836] Can't build an Art College in the Artist Enclave system (nice easy fix)

Game Version
v3.4.2 (7836)

What version do you use?
Steam

What expansions do you have installed?
Synthetic Dawn, Utopia, Leviathans Story Pack, Apocalypse, Megacorp, Distant Stars, Ancient Relics, Lithoids, Federations, Nemesis, Aquatics

Do you have mods enabled?
No

Please explain your issue is in as much detail as possible.
You can't build the art college.

The building's "potential" block requires the flag enclave_artist_encountered but the enclave_artist_encountered flag is not assigned anywhere in the game. Presumably it's supposed to be assigned in event leviathans.315 the same as curators_intro is assigned in leviathans.502, but it is not.

This also affects leviathans.313 as this event also requires the flag to work correctly.

Steps to reproduce the issue.
Get the Artisan enclave in your territory, request art college, build a starport, no building visible.

Upload Attachment
File(s) attached
 

Attachments

  • No College.png
    No College.png
    662,8 KB · Views: 0
  • 5
  • 2
  • 1Like
Reactions:
I also noted in SirBlackAxe's bug compilation thread about the Art College script issue:
Excellent point, in 3.3.4, the code for the Art College potential was

Code:
    potential = {
        exists = owner
        OR = {
            owner = { has_country_flag = enclave_artist_encountered }
            solar_system = { has_star_flag = enclave }
        }
        owner = {
            NOR = {
                has_valid_civic = civic_fanatic_purifiers
                has_valid_civic = civic_hive_devouring_swarm
                has_valid_civic = civic_machine_terminator
            }
        }
    }

In 3.4.2 it is

Code:
    potential = {
        exists = owner
        owner = {
            is_homicidal = no
            has_country_flag = enclave_artist_encountered
        }
        is_orbital_ring = no
    }
Previously, the (unset) flag was optional, but as the star flag is also checked in the allowed, I'd guess someone decided to simplify the script, not realizing the other flag was never set.
 
  • 4
Reactions:
Until they fix it, you can set that flag manually via console:

effect = { set_country_flag = enclave_artist_encountered }

I was able to build the Art College again after that in the starbase of an Artisan Troupe system.