From c88555da943a51e88fc748cd0593a7145d77f6ab Mon Sep 17 00:00:00 2001 From: Acamaeda Date: Mon, 30 Nov 2020 20:40:53 -0500 Subject: [PATCH] Re-re-refix clickables --- js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/utils.js b/js/utils.js index cd2eee9..382f87b 100644 --- a/js/utils.js +++ b/js/utils.js @@ -169,7 +169,7 @@ function getStartBuyables(layer){ function getStartClickables(layer){ let data = {} if (layers[layer].clickables) { - for (id in layers[layer].buyables) + for (id in layers[layer].clickables) if (isPlainObject(layers[layer].clickables[id])) data[id] = "" }