diff --git a/public/arcade/index.html b/public/arcade/index.html index a55388d6..23ff4012 100644 --- a/public/arcade/index.html +++ b/public/arcade/index.html @@ -105,23 +105,12 @@ document.querySelector('.shop-dialogue').innerHTML = '...' } - if(urlParams.get("user")) { - - document.getElementById("order_wrapper").innerHTML = ` - ${items[inv.name].map(subitem => { - return ` - ${items[inv.name].length > 1 ? subitem.name : "ORDER NOW"} - ` - }).join(" ")} - - ` - } else { - document.getElementById("order_wrapper").innerHTML = ` -
- VISIT YOUR SHOP TO ORDER -
- ` - } + document.getElementById("order_wrapper").innerHTML = ` +
+ COME BACK LATER! SHOP'S DOWN FOR MAINTENANCE +
+ ` + document.getElementById("shop-counter").classList.add("ordering") }