From 37c84b6d5e430d22d7a7b3d246ef569f0900e643 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Mon, 31 Jan 2022 18:56:31 -0500 Subject: [PATCH] fix non-behavior elements being called stationary --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 965ca62e..5ac527aa 100644 --- a/index.html +++ b/index.html @@ -5941,7 +5941,7 @@ for (var k = 0; k < b0.split(" AND ").length; k++) { sticks = sticks.filter(function(item, pos) {return sticks.indexOf(item) == pos;}); if (info.category == "tools") { infoText.innerHTML += "\nTool."} else { - if (!moves) { infoText.innerHTML += "\nStationary."; } + if (!moves && info.behavior) { infoText.innerHTML += "\nStationary."; } if (info.category) { infoText.innerHTML += "\nCategory: "+info.category.toUpperCase()+"."; } if (info.conduct) { infoText.innerHTML += "\nConducts electricity."; } if (swaps.length > 0) { infoText.innerHTML += "\nMoves through "+infoLink(swaps)+"."; }