1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-24 01:11:46 +00:00

Re-re-refix clickables

This commit is contained in:
Acamaeda 2020-11-30 20:40:53 -05:00
parent a9d55645b5
commit c88555da94

View file

@ -169,7 +169,7 @@ function getStartBuyables(layer){
function getStartClickables(layer){ function getStartClickables(layer){
let data = {} let data = {}
if (layers[layer].clickables) { if (layers[layer].clickables) {
for (id in layers[layer].buyables) for (id in layers[layer].clickables)
if (isPlainObject(layers[layer].clickables[id])) if (isPlainObject(layers[layer].clickables[id]))
data[id] = "" data[id] = ""
} }