mirror of
https://github.com/seigler/bl2skills.com
synced 2025-07-27 01:36:10 +00:00
Update skill level cap to 80
This commit is contained in:
parent
de156c0d3d
commit
d1522ee372
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ function updatePoints(skillHandle, change) {
|
||||||
var max = parseInt(skillHandle.attr("data-max"));
|
var max = parseInt(skillHandle.attr("data-max"));
|
||||||
var charLevel = parseInt($("span.charLevel").text());
|
var charLevel = parseInt($("span.charLevel").text());
|
||||||
if(change > 0) {
|
if(change > 0) {
|
||||||
if (points < max && treeTotal >= 5 * thisLevel && charLevel < 72) {
|
if (points < max && treeTotal >= 5 * thisLevel && charLevel < 80) {
|
||||||
++points;
|
++points;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue