Update skill level cap to 80

This commit is contained in:
Joshua Seigler 2019-06-08 20:41:37 -04:00
parent de156c0d3d
commit d1522ee372

View file

@ -55,7 +55,7 @@ function updatePoints(skillHandle, change) {
var max = parseInt(skillHandle.attr("data-max"));
var charLevel = parseInt($("span.charLevel").text());
if(change > 0) {
if (points < max && treeTotal >= 5 * thisLevel && charLevel < 72) {
if (points < max && treeTotal >= 5 * thisLevel && charLevel < 80) {
++points;
}
} else {