-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: technology which you can't learn cause of unique "Only available <before discovering [tech]" you can get for free when getting free technologies #7083
Conversation
for (unique in requiredTech.uniqueObjects | ||
.filter { it.type == UniqueType.OnlyAvailableWhen && !it.conditionalsApply(civInfo) }) { | ||
return false | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could probably be replaced with
if (requiredTech.uniqueObjects.any { it.type == UniqueType.OnlyAvailableWhen && !it.conditionalsApply(civInfo) })
return false
without changing the intended effect but it'd be wise to double check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed
Can you please state which specific bug this is fixing? So which technology exactly can you get via "free technology" that you shouldn't be able to get? Because to me it seems like it's not necessary to go through all technologies that you needed to get to a point, because those are already done. Just because some technology in the past is "only available before x" doesn't mean that that should prevent the current technology from being researched. |
thanks for OptimizedForDensity, now changes are correct |
sorry for my wrong fix, it was just copy-paste from another place how to reproduce problem:
fix from OptimizedForDensity solves this problems:
|
sorry, trying to find how to split translation pull request :( |
Aaaand this never would've happened if |
Create a new branch, don't use |
yes, in our company all java "if" must have { } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why the Lithuanian changes are in the same PR but not a blocker
technology which you can't learn cause of unique "Only available <before discovering [tech]" you can get for free when getting free technologies