fixed duration + crafted tier displaying in center

This commit is contained in:
ferricles 2021-01-19 12:46:04 -08:00
parent b12592ce1b
commit 7c5c2260d1

View file

@ -685,7 +685,7 @@ function displayExpandedItem(item, parent_id){
if(item.get("tier") && item.get("tier") === "Crafted") { if(item.get("tier") && item.get("tier") === "Crafted") {
let dura_elem = document.createElement("p"); let dura_elem = document.createElement("p");
dura_elem.classList.add("left"); dura_elem.classList.add("itemp");
let dura = []; let dura = [];
let suffix = ""; let suffix = "";
if(nonConsumables.includes(item.get("type"))) { if(nonConsumables.includes(item.get("type"))) {
@ -697,15 +697,15 @@ function displayExpandedItem(item, parent_id){
suffix = " sec." suffix = " sec."
} }
dura_elem.textContent += dura[0]+"-"+dura[1] + suffix; dura_elem.textContent += dura[0]+"-"+dura[1] + suffix;
parent_div.append(dura_elem); active_elem.append(dura_elem);
} }
//Show item tier //Show item tier
if (item.get("tier") && item.get("tier") !== " ") { if (item.get("tier") && item.get("tier") !== " ") {
let item_desc_elem = document.createElement("p"); let item_desc_elem = document.createElement("p");
item_desc_elem.classList.add('left'); item_desc_elem.classList.add('itemp');
item_desc_elem.classList.add(item.get("tier")); item_desc_elem.classList.add(item.get("tier"));
item_desc_elem.textContent = item.get("tier")+" "+item.get("type"); item_desc_elem.textContent = item.get("tier")+" "+item.get("type");
parent_div.append(item_desc_elem); active_elem.append(item_desc_elem);
} }
} }
function displayCraftStats(craft, parent_id) { function displayCraftStats(craft, parent_id) {