I used unlocking_technologies conditional statement in production_method. it worked. but it works only as 'OR'
unlocking_technologies = {
A
B
}
It only works as A or B but what I want is A and B
I tried under one.
unlocking_technologies = {
And = {
A
B
}
}
it didn't work.
1. I want to use 'And' into unlocking_technologies
2. I want to know another conditional statements that can be used in production_method
unlocking_technologies = {
A
B
}
It only works as A or B but what I want is A and B
I tried under one.
unlocking_technologies = {
And = {
A
B
}
}
it didn't work.
1. I want to use 'And' into unlocking_technologies
2. I want to know another conditional statements that can be used in production_method
Last edited:
- 1