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

ChoGGi_2

Lt. General
21 Badges
Apr 3, 2018
1.418
112
  • Surviving Mars
  • Stellaris: Ancient Relics
  • Cities: Skylines - Campus
  • Surviving Mars: First Colony Edition
  • Prison Architect
  • Cities: Skylines Industries
  • Surviving Mars: First Colony Edition
  • Cities: Skylines - Parklife
  • Surviving Mars: Digital Deluxe Edition
  • Cities: Skylines - Green Cities
  • Age of Wonders III
  • Cities: Skylines - Mass Transit
  • Cities: Skylines - Natural Disasters
  • Stellaris
  • Cities: Skylines - Snowfall
  • Cities: Skylines - After Dark
  • Cities: Skylines Deluxe Edition
  • Cities: Skylines
  • Crusader Kings II
  • Ship Simulator Extremes
  • Magicka
Console are maxed at 20 domes with:
const.DomeCap = Platform.desktop and max_int or 20

This function is what checks if you're at the limit:
Code:
function AreDomesCapped()
    return #(UICity.labels.Dome or "") >= const.DomeCap
end

but dome construction sites are stored in
UICity.labels.ConstructionSiteWithHeightSurfaces
UICity.labels.DomeBasic_Construction (depending on the class)

So you can plunk down as many sites as you want, and just turn them off till you want to build.

Edit: It seems the geodome (wonder) doesn't check the limit, so you can build that after you reach the limit as well.
 
Last edited:
Upvote 0