This commit is contained in:
b 2021-03-25 01:38:52 -07:00
parent 4b79fe719f
commit 700e51fbbc

View file

@ -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))
}
}