I need to prevent the AI from building a new ship type from a mod I'm using.
I know that I can accomplish this by modifying the file of the ship type directly. I looked at the Stellaris wiki and found this:
Can I paste this as is into the ship type's main file /mod/common/ship_sizes/ship.txt? Or do I need to figure out something more specific like "is_not_ai" under shipyards in that file.
I know that I can accomplish this by modifying the file of the ship type directly. I looked at the Stellaris wiki and found this:
Code:
ai_weight = {
weight = 0
}
Can I paste this as is into the ship type's main file /mod/common/ship_sizes/ship.txt? Or do I need to figure out something more specific like "is_not_ai" under shipyards in that file.