This commit is contained in:
ferricles 2021-04-20 14:48:34 -07:00
commit b9cb72b635
2 changed files with 3 additions and 1 deletions

View file

@ -3,7 +3,7 @@ const url_tag = location.hash.slice(1);
// console.log(url_tag);
const BUILD_VERSION = "7.0.2";
const BUILD_VERSION = "7.0.3";

View file

@ -469,6 +469,8 @@ function displayExpandedItem(item, parent_id){
total_damage_max += damages[i][0] + damages[i][1];
item.set(damage_keys[i], damagesLow[i][0]+"-"+damagesLow[i][1]+"\u279c"+damages[i][0]+"-"+damages[i][1]);
}
total_damage_min = total_damage_min / 2;
total_damage_max = total_damage_max / 2;
item.set("basedps", [total_damage_min, total_damage_max]);
}
} else if (item.get("category") === "armor") {