From 2be6e114dffa2fb9ed9eed69351a7dd4057e025c Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@mailbox.org> Date: Wed, 1 Mar 2023 13:55:44 +0100 Subject: [PATCH] Remove unneeded console.log calls from siWardrobe.js --- src/interaction/siWardrobe.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/interaction/siWardrobe.js b/src/interaction/siWardrobe.js index e4d54164b52..3d6cfbcad23 100644 --- a/src/interaction/siWardrobe.js +++ b/src/interaction/siWardrobe.js @@ -786,7 +786,6 @@ App.UI.SlaveInteract.wardrobe = function(slave, contentRefresh) { * @returns {string|HTMLElement} */ function itemTooltip(itemName, category) { - console.log(itemName, category); if (itemName === "none" || ["armAccessory", "legAccessory"].includes(category)) { return "No effect one way or another."; } @@ -949,8 +948,6 @@ App.UI.SlaveInteract.wardrobe = function(slave, contentRefresh) { } else { link = document.createElement('span'); - console.log(name, category, itemTooltip(name, category)); - // Set up the link link.appendChild( App.UI.DOM.link( -- GitLab