From d4706ebb7488a074c9d8a8df9139fa5e5c521e21 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 17 Jul 2022 22:04:38 -0700 Subject: [PATCH] Remove debugging msg for skillpoint calc --- js/skillpoints.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/skillpoints.js b/js/skillpoints.js index d739c5d..a13fd88 100644 --- a/js/skillpoints.js +++ b/js/skillpoints.js @@ -219,7 +219,6 @@ function calculate_skillpoints(equipment, weapon) { const end = performance.now(); const output_msg = `skillpoint calculation took ${(end-start)/ 1000} seconds.`; console.log(output_msg); - document.getElementById('stack-box').textContent += output_msg; return [equip_order, best_skillpoints, final_skillpoints, best_total, best_activeSetCounts]; }