Skip to content
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

idleLoops: Practical Magic #33

Open
MrNuggelz opened this issue Sep 14, 2018 · 0 comments
Open

idleLoops: Practical Magic #33

MrNuggelz opened this issue Sep 14, 2018 · 0 comments

Comments

@MrNuggelz
Copy link

The Practical Magic tooltip states, that the mana cost of Smash Pots is decreased by 1% for every level, meaning that at level 100 the mana cost of Smash Pots should be 0.
But the in the javascript code the mana is computed by:
50 / (1 + getSkillLevel("Practical")/100)
producing a value of 25 for level 100.

So either the manaCost function should be changed to:
return Math.ceil(50 * (1 - getSkillLevel("Practical")/100);
or the tooltip should be changed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant