isau
Deity
- Joined
- Jan 15, 2007
- Messages
- 3,071
FYI someone just alerted me to the existence of this thread on Reddit:
https://www.reddit.com/r/civ/comments/84d5cz/firaxis_please_fix_ai_crippled_by_dumb_typo/
It turns out part of the reason the AI is struggling is due a typo in the AI code.
Firaxis is seemingly aware. I guess we'll see an update soon. People in the thread are speculating that it will make AI opponents much tougher.
Meanwhile, if you want to fix the game, you can borrow this code below. Just put it into any mod that loads SQL. Or, someone will probably make a mod of this soon.
Now I just hope someone finds a typo that fixes the use of Nukes and Air units.
(Thanks to @ease for posting about it.)
https://www.reddit.com/r/civ/comments/84d5cz/firaxis_please_fix_ai_crippled_by_dumb_typo/
It turns out part of the reason the AI is struggling is due a typo in the AI code.

Meanwhile, if you want to fix the game, you can borrow this code below. Just put it into any mod that loads SQL. Or, someone will probably make a mod of this soon.
Spoiler :
Code:
UPDATE AIFavoredItems SET Item='YIELD_PRODUCTION' WHERE Item='YEILD_PRODUCTION';
UPDATE AIFavoredItems SET Item='YIELD_FAITH' WHERE Item='YEILD_FAITH';
UPDATE AIFavoredItems SET Item='YIELD_CULTURE' WHERE Item='YEILD_CULTURE';
UPDATE AIFavoredItems SET Item='YIELD_GOLD' WHERE Item='YEILD_GOLD';
UPDATE AIFavoredItems SET Item='YIELD_SCIENCE' WHERE Item='YEILD_SCIENCE';
Now I just hope someone finds a typo that fixes the use of Nukes and Air units.

(Thanks to @ease for posting about it.)
Last edited: