Remove urban defenses

Ipadcivfan

Chieftain
Joined
Aug 8, 2019
Messages
24
now that steel is what unlocks urban defenses how can I remove them? I am on iPad and can only add lines into a mod I cannot look at anything in the actual game files. Anyone who can make a mod or help me would be greatly appreciated I have already removed walls just can’t figure out urban defenses
 
Stick this in a SQL file and list the file under the UpdateDatabase block in the .modinfo. (This removes the UD modifier attached to Steel.)
Code:
DELETE FROM TechnologyModifiers
WHERE       ModifierId = 'STEEL_UNLOCK_URBAN_DEFENSES';
Stick this in a SQL file and list the file under the UpdateText block in the .modinfo. (This updates the text tooltip in the tech tree.)
Code:
UPDATE LocalizedText
SET    Text = '+1 [ICON_Production] Production from the Lumber Mill improvement.'
WHERE  Tag = 'LOC_TECH_STEEL_DESCRIPTION';
 
Back
Top Bottom