[NFP] [1.0.5.11]Having both Hippodrome and WaterPark in ONE city

bbufa

Warlord
Joined
Nov 3, 2016
Messages
235
The trick to replicate this bug is: build (or place) the WaterPark district before Hippodrome.
Idk if this is a bug or game design, but it's weird since 2 districts are mutually exclusive.
 

Attachments

  • 1.jpg
    1.jpg
    707.8 KB · Views: 64
  • 2.jpg
    2.jpg
    721.2 KB · Views: 37
  • quicksave.Civ6Save
    3.5 MB · Views: 40
Interesting. When this was questioned in the patch notes thread I double-checked because I knew that some time ago FXS made a change so that anything in a Building or District replaces table that was affected by things like modifiers would automatically apply to the Uniques as well. In my test I found that you couldn't build both in the same city, but only checked by building the Hippodrome first.

So, checking again today I can confirm that building the Water Park first still allows construction of the Hippodrome. Apparently, there still needs to be an entry in the MutuallyExclusiveDistricts table that checks the UD against the regular district.

This will correct the issue:
Code:
INSERT INTO MutuallyExclusiveDistricts
       (District,              MutuallyExclusiveDistrict)
VALUES ('DISTRICT_HIPPODROME', 'DISTRICT_WATER_ENTERTAINMENT_COMPLEX');
 
Last edited:
Top Bottom