Fix ELS
This commit is contained in:
parent
4b79fe719f
commit
700e51fbbc
1 changed files with 2 additions and 2 deletions
|
@ -402,7 +402,7 @@ function displayBuildStats(parent_id,build){
|
|||
title.textContent = "Effective Life Steal:"
|
||||
let value = document.createElement("td");
|
||||
let defStats = build.getDefenseStats();
|
||||
value.textContent = Math.round(defStats[1][0]*id_val/defStats[0]) + "/4s";
|
||||
value.textContent = Math.round(defStats[1][0]*id_val/defStats[0]) + "/3s";
|
||||
value.classList.add("right");
|
||||
value.classList.add(style);
|
||||
row.appendChild(title);
|
||||
|
@ -2267,4 +2267,4 @@ function displayIDProbabilities(parent_id,item) {
|
|||
|
||||
let item_name = item.get("displayName");
|
||||
console.log(itemMap.get(item_name))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue