[NFP] [1.0.8.4] [Secret Societies] Alchemical Society building does not give tourism from rock concerts

robal1991

Warlord
Joined
May 2, 2011
Messages
234
Location
Poland
Alchemical Society building (replaces University) does not give +500 tourism from rock concerts. I posted this question in the general forums but there were no answer so I am reposting it here. If this is an intended behaviour close the thread please.
 
Good catch - I had never noticed this (mainly because I really never bother with Rock Bands at all, and always ban them from my territory first chance I get too)
 
It seems, in some functions, <DistrictReplaces> or <BuildingReplaces> doesn't work well.
Mahavihara case is such an example.
https://forums.civfanatics.com/thre...djacency-bonus-doesnt-apply-to-seowon.666020/

If we look at Rock Band promotion code, it has both ROCKBAND_SURF_ROCK_HARBOR and ROCKBAND_SURF_ROCK_ROYAL_NAVY_DOCKYARD.
It means Rock Band does not recognize Royal Navy Dockyard as a type of Harbor.
Perhaps Alchemist Society is same case.
I tried to find out where this can be fixed in XML but could not.

I wonder how many similar cases are hidden.
I've not checked yet but will see if REQUIRES_CITY_HAS_UNIVERSITY works with Alchemist Society, if I have a chance later.

(EDIT) REQUIRES_CITY_HAS_UNIVERSITY is for Nobel Prize Emergency. If anybody checked already, please share the case.
 
Last edited:
How about adding
Code:
<Building_TourismBombs_XP2>
        <Row BuildingType="BUILDING_ALCHEMICAL_SOCIETY" TourismBombValue="500"/>
</Building_TourismBombs_XP2>
into Ethiopia_SecretSocieties_Expansion2_MODE.xml?
 
How about adding
Code:
<Building_TourismBombs_XP2>
        <Row BuildingType="BUILDING_ALCHEMICAL_SOCIETY" TourismBombValue="500"/>
</Building_TourismBombs_XP2>
into Ethiopia_SecretSocieties_Expansion2_MODE.xml?

Good insight !!
It looks worth trying.
I added it in my debug SQL.

Code:
INSERT INTO Building_TourismBombs_XP2 (BuildingType, TourismBombValue) VALUES ('BUILDING_ALCHEMICAL_SOCIETY', '500');

I'll see what happens if I encounter the case.
 
Back
Top Bottom