-
Notifications
You must be signed in to change notification settings - Fork 15
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
Will the synergy effect if counter exceed 4 but only with 2-count configed? #200
Comments
Join us on Discord for the latest news. |
Thanks, I have join the discord. |
Thanks for responding. I don't know whether I have misunderstood. If not, how about change code like this:
|
You're right. This does fix the bug. Great thanks. Would you like to create a PR for fixing it? And for the second |
Yes, I would like create a PR for it. It is my honor to join such a charming project ! And for the second 'if', it is my coding habit that use '<=' or '>=' instead of '=='. I think it can avoid boundary risks in special cases. |
For example, about the RaceSynergyEffect of troll, only config 2-count (no 4-count):
Lets say the count if bigger than 4, then the judgement 'count / (4 * base) > 0' is true, but 'data = RaceSynergyEffect.get(4 * base)' is empty. Even though 2-count effect has been configed, but the result is no effect.
Don't know if this is in line with the intent of the design, thank you!
The text was updated successfully, but these errors were encountered: